]> git.ipfire.org Git - thirdparty/kernel/linux.git/commitdiff
bpf: make bpf_session_is_return() reference optional
authorArnd Bergmann <arnd@arndb.de>
Fri, 15 May 2026 11:32:32 +0000 (13:32 +0200)
committerAlexei Starovoitov <ast@kernel.org>
Fri, 15 May 2026 16:49:16 +0000 (09:49 -0700)
Building without CONFIG_BPF_EVENTS produces a build-time
warning:

WARN: resolve_btfids: unresolved symbol bpf_session_is_return

The function is actually defined in kernel/trace/bpf_trace.o,
which is built conditionally based on configuration.

Make the reference to this function conditional as well,
as is already done in the bpf verifier for other functions.

Fixes: 8fe4dc4f6456 ("bpf: change prototype of bpf_session_{cookie,is_return}")
Signed-off-by: Arnd Bergmann <arnd@arndb.de>
Link: https://lore.kernel.org/r/20260515113242.2706303-1-arnd@kernel.org
Signed-off-by: Alexei Starovoitov <ast@kernel.org>
kernel/bpf/verifier.c

index 69d75515ed3f770b0dab00675178f700e173b71f..88b40c979b567a377cfe4e05faf176766a2592a2 100644 (file)
@@ -11263,7 +11263,11 @@ BTF_ID(func, bpf_task_work_schedule_resume)
 BTF_ID(func, bpf_arena_alloc_pages)
 BTF_ID(func, bpf_arena_free_pages)
 BTF_ID(func, bpf_arena_reserve_pages)
+#ifdef CONFIG_BPF_EVENTS
 BTF_ID(func, bpf_session_is_return)
+#else
+BTF_ID_UNUSED
+#endif
 BTF_ID(func, bpf_stream_vprintk)
 BTF_ID(func, bpf_stream_print_stack)