]> asedeno.scripts.mit.edu Git - linux.git/commit
bpf: Fix build error without CONFIG_NET
authorYueHaibing <yuehaibing@huawei.com>
Fri, 18 Oct 2019 09:03:44 +0000 (17:03 +0800)
committerDaniel Borkmann <daniel@iogearbox.net>
Fri, 18 Oct 2019 18:57:07 +0000 (20:57 +0200)
commit1f5343c0ae9673543055e9794362766e1f0ed163
tree9876da34a90984c6976b49c9cdff572d51e4ec75
parentc108e3c1bdbd0783d7c19ee80abb0591f79029e8
bpf: Fix build error without CONFIG_NET

If CONFIG_NET is n, building fails:

kernel/trace/bpf_trace.o: In function `raw_tp_prog_func_proto':
bpf_trace.c:(.text+0x1a34): undefined reference to `bpf_skb_output_proto'

Wrap it into a #ifdef to fix this.

Fixes: a7658e1a4164 ("bpf: Check types of arguments passed into helpers")
Reported-by: Hulk Robot <hulkci@huawei.com>
Signed-off-by: YueHaibing <yuehaibing@huawei.com>
Signed-off-by: Daniel Borkmann <daniel@iogearbox.net>
Acked-by: Yonghong Song <yhs@fb.com>
Link: https://lore.kernel.org/bpf/20191018090344.26936-1-yuehaibing@huawei.com
kernel/trace/bpf_trace.c