aboutsummaryrefslogtreecommitdiffstats
path: root/tools/testing/selftests/bpf/bpf_flow.c
diff options
context:
space:
mode:
authorAlexei Starovoitov <ast@kernel.org>2018-09-14 12:09:05 -0700
committerAlexei Starovoitov <ast@kernel.org>2018-09-14 12:09:05 -0700
commit70e88c758a6b8544b5e0d982e55d1e36f9aa0b85 (patch)
treed719e7088b51124673ed9b94d1815d7f10a927bc /tools/testing/selftests/bpf/bpf_flow.c
parentMerge branch 'bpf-flow-dissector' (diff)
downloadlinux-dev-70e88c758a6b8544b5e0d982e55d1e36f9aa0b85.tar.xz
linux-dev-70e88c758a6b8544b5e0d982e55d1e36f9aa0b85.zip
selftests/bpf: fix bpf_flow.c build
fix the following build error: clang -I. -I./include/uapi -I../../../include/uapi -idirafter /usr/local/include -idirafter /data/users/ast/llvm/bld/lib/clang/7.0.0/include -idirafter /usr/include -Wno-compare-distinct-pointer-types \ -O2 -target bpf -emit-llvm -c bpf_flow.c -o - | \ llc -march=bpf -mcpu=generic -filetype=obj -o /data/users/ast/bpf-next/tools/testing/selftests/bpf/bpf_flow.o LLVM ERROR: 'dissect' label emitted multiple times to assembly file make: *** [/data/users/ast/bpf-next/tools/testing/selftests/bpf/bpf_flow.o] Error 1 Fixes: 9c98b13cc3bb ("flow_dissector: implements eBPF parser") Signed-off-by: Alexei Starovoitov <ast@kernel.org>
Diffstat (limited to '')
-rw-r--r--tools/testing/selftests/bpf/bpf_flow.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/testing/selftests/bpf/bpf_flow.c b/tools/testing/selftests/bpf/bpf_flow.c
index 5fb809d95867..107350a7821d 100644
--- a/tools/testing/selftests/bpf/bpf_flow.c
+++ b/tools/testing/selftests/bpf/bpf_flow.c
@@ -117,7 +117,7 @@ static __always_inline int parse_eth_proto(struct __sk_buff *skb, __be16 proto)
}
SEC("dissect")
-int dissect(struct __sk_buff *skb)
+int _dissect(struct __sk_buff *skb)
{
if (!skb->vlan_present)
return parse_eth_proto(skb, skb->protocol);