Commit 8f1634b8 authored by Stanislav Fomichev's avatar Stanislav Fomichev Committed by Daniel Borkmann

selftests/bpf: Convert static to global in tc_redirect progs

Both IFINDEX_SRC and IFINDEX_DST are set from the userspace
and it won't work once bpf merges with bpf-next.

Fixes: 096eccde ("selftests/bpf: Rewrite test_tc_redirect.sh as prog_tests/tc_redirect.c")
Signed-off-by: default avatarStanislav Fomichev <sdf@google.com>
Signed-off-by: default avatarAndrii Nakryiko <andrii@kernel.org>
Signed-off-by: default avatarDaniel Borkmann <daniel@iogearbox.net>
Link: https://lore.kernel.org/bpf/20210514170528.3750250-1-sdf@google.com
parent 6bdacdb4
...@@ -33,8 +33,8 @@ ...@@ -33,8 +33,8 @@
a.s6_addr32[3] == b.s6_addr32[3]) a.s6_addr32[3] == b.s6_addr32[3])
#endif #endif
static volatile const __u32 IFINDEX_SRC; volatile const __u32 IFINDEX_SRC;
static volatile const __u32 IFINDEX_DST; volatile const __u32 IFINDEX_DST;
static __always_inline bool is_remote_ep_v4(struct __sk_buff *skb, static __always_inline bool is_remote_ep_v4(struct __sk_buff *skb,
__be32 addr) __be32 addr)
......
...@@ -8,8 +8,8 @@ ...@@ -8,8 +8,8 @@
#include <bpf/bpf_helpers.h> #include <bpf/bpf_helpers.h>
static volatile const __u32 IFINDEX_SRC; volatile const __u32 IFINDEX_SRC;
static volatile const __u32 IFINDEX_DST; volatile const __u32 IFINDEX_DST;
SEC("classifier/chk_egress") SEC("classifier/chk_egress")
int tc_chk(struct __sk_buff *skb) int tc_chk(struct __sk_buff *skb)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment