summaryrefslogtreecommitdiffstats
path: root/kernel/bpf/btf.c
diff options
context:
space:
mode:
authorBenjamin Tissoires <benjamin.tissoires@redhat.com>2022-09-06 17:13:01 +0200
committerAlexei Starovoitov <ast@kernel.org>2022-09-07 11:05:03 -0700
commitf9b348185f4d684cc19e6bd9b87904823d5aa5ed (patch)
tree0937a485e30907dc45ed8d4c22b4df88143dc109 /kernel/bpf/btf.c
parentfb66223a244f252273995557b23e0fa53092e92c (diff)
downloadlinux-f9b348185f4d684cc19e6bd9b87904823d5aa5ed.tar.gz
linux-f9b348185f4d684cc19e6bd9b87904823d5aa5ed.tar.bz2
linux-f9b348185f4d684cc19e6bd9b87904823d5aa5ed.zip
bpf/btf: bump BTF_KFUNC_SET_MAX_CNT
net/bpf/test_run.c is already presenting 20 kfuncs. net/netfilter/nf_conntrack_bpf.c is also presenting an extra 10 kfuncs. Given that all the kfuncs are regrouped into one unique set, having only 2 space left prevent us to add more selftests. Bump it to 256. Signed-off-by: Benjamin Tissoires <benjamin.tissoires@redhat.com> Link: https://lore.kernel.org/r/20220906151303.2780789-6-benjamin.tissoires@redhat.com Signed-off-by: Alexei Starovoitov <ast@kernel.org>
Diffstat (limited to 'kernel/bpf/btf.c')
-rw-r--r--kernel/bpf/btf.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/kernel/bpf/btf.c b/kernel/bpf/btf.c
index 9291e2b2c950..2c2d8190ca4a 100644
--- a/kernel/bpf/btf.c
+++ b/kernel/bpf/btf.c
@@ -208,7 +208,7 @@ enum btf_kfunc_hook {
};
enum {
- BTF_KFUNC_SET_MAX_CNT = 32,
+ BTF_KFUNC_SET_MAX_CNT = 256,
BTF_DTOR_KFUNC_MAX_CNT = 256,
};