While testing some other BPF issue, I realized that BPF_EVENTS is actually not accessible through menuconfig because of a missing description that needs to be attached to the bool. After the patch the entry shows up in menuconfig and can be enabled/disabled from there.
Fixes: e1abf2cc8d5d ("bpf: Fix the build on BPF_SYSCALL=y && !CONFIG_TRACING kernels, make it more configurable") Signed-off-by: Daniel Borkmann <dan...@iogearbox.net> Cc: Alexei Starovoitov <a...@plumgrid.com> Cc: Ingo Molnar <mi...@kernel.org> Cc: Steven Rostedt <rost...@goodmis.org> --- kernel/trace/Kconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kernel/trace/Kconfig b/kernel/trace/Kconfig index 1153c43..db9a8c4 100644 --- a/kernel/trace/Kconfig +++ b/kernel/trace/Kconfig @@ -433,9 +433,9 @@ config UPROBE_EVENT of perf tools on user space applications. config BPF_EVENTS + bool "Enable BPF programs to be attached to events" depends on BPF_SYSCALL depends on KPROBE_EVENT || UPROBE_EVENT - bool default y help This allows the user to attach BPF programs to kprobe events. -- 1.9.3 -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majord...@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/