From: Haiyue Wang Date: Wed, 24 Apr 2024 05:45:07 +0000 (+0800) Subject: bpf: update the comment for BTF_FIELDS_MAX X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=95c07d58250ca3ed01855c20be568cf04e15382f;p=linux.git bpf: update the comment for BTF_FIELDS_MAX The commit d56b63cf0c0f ("bpf: add support for bpf_wq user type") changes the fields support number to 11, just sync the comment. Signed-off-by: Haiyue Wang Acked-by: Yonghong Song Link: https://lore.kernel.org/r/20240424054526.8031-1-haiyue.wang@intel.com Signed-off-by: Alexei Starovoitov --- diff --git a/include/linux/bpf.h b/include/linux/bpf.h index 64bf0cf3ee95f..978200f6d9255 100644 --- a/include/linux/bpf.h +++ b/include/linux/bpf.h @@ -184,7 +184,7 @@ struct bpf_map_ops { }; enum { - /* Support at most 10 fields in a BTF type */ + /* Support at most 11 fields in a BTF type */ BTF_FIELDS_MAX = 11, };