]> git.baikalelectronics.ru Git - kernel.git/commit
bpf: Fix bpf_prog_test_run_tracing for !CONFIG_NET
authorKP Singh <kpsingh@google.com>
Thu, 5 Mar 2020 22:01:27 +0000 (23:01 +0100)
committerAlexei Starovoitov <ast@kernel.org>
Thu, 5 Mar 2020 23:14:58 +0000 (15:14 -0800)
commit42c6f2d056dc4ed6951296655920af1b25793691
treea0c66b42f9fbcf54ce17127cf87662379593829d
parent7681ab961694eabea92133e11ba8a4ab15fbab29
bpf: Fix bpf_prog_test_run_tracing for !CONFIG_NET

test_run.o is not built when CONFIG_NET is not set and
bpf_prog_test_run_tracing being referenced in bpf_trace.o causes the
linker error:

ld: kernel/trace/bpf_trace.o:(.rodata+0x38): undefined reference to
 `bpf_prog_test_run_tracing'

Add a __weak function in bpf_trace.c to handle this.

Fixes: 9948540194e8 ("bpf: Add test ops for BPF_PROG_TYPE_TRACING")
Signed-off-by: KP Singh <kpsingh@google.com>
Reported-by: Randy Dunlap <rdunlap@infradead.org>
Acked-by: Randy Dunlap <rdunlap@infradead.org>
Signed-off-by: Alexei Starovoitov <ast@kernel.org>
Link: https://lore.kernel.org/bpf/20200305220127.29109-1-kpsingh@chromium.org
kernel/trace/bpf_trace.c