diff options
author | Martin KaFai Lau <kafai@fb.com> | 2020-11-06 14:54:02 -0800 |
---|---|---|
committer | Andrii Nakryiko <andrii@kernel.org> | 2020-11-09 16:18:36 -0800 |
commit | f52b8fd332573106e60958617a3d2e30611ce1fb (patch) | |
tree | f64859147386fbab5d130b077657dcc0cb5faad9 /tools/testing/selftests/bpf/prog_tests/btf_skc_cls_ingress.c | |
parent | 666475ccbf1dc99c1e61e47975d5fbf86d6236aa (diff) | |
download | linux-f52b8fd332573106e60958617a3d2e30611ce1fb.tar.gz linux-f52b8fd332573106e60958617a3d2e30611ce1fb.tar.bz2 linux-f52b8fd332573106e60958617a3d2e30611ce1fb.zip |
bpf: selftest: Use static globals in tcp_hdr_options and btf_skc_cls_ingress
Some globals in the tcp_hdr_options test and btf_skc_cls_ingress test
are not using static scope. This patch fixes it.
Targeting bpf-next branch as an improvement since it currently does not
break the build.
Fixes: ad2f8eb0095e ("bpf: selftests: Tcp header options")
Fixes: 9a856cae2217 ("bpf: selftest: Add test_btf_skc_cls_ingress")
Signed-off-by: Martin KaFai Lau <kafai@fb.com>
Signed-off-by: Andrii Nakryiko <andrii@kernel.org>
Acked-by: John Fastabend <john.fastabend@gmail.com>
Link: https://lore.kernel.org/bpf/20201106225402.4135741-1-kafai@fb.com
Diffstat (limited to 'tools/testing/selftests/bpf/prog_tests/btf_skc_cls_ingress.c')
-rw-r--r-- | tools/testing/selftests/bpf/prog_tests/btf_skc_cls_ingress.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/testing/selftests/bpf/prog_tests/btf_skc_cls_ingress.c b/tools/testing/selftests/bpf/prog_tests/btf_skc_cls_ingress.c index 86ccf37e26b3..762f6a9da8b5 100644 --- a/tools/testing/selftests/bpf/prog_tests/btf_skc_cls_ingress.c +++ b/tools/testing/selftests/bpf/prog_tests/btf_skc_cls_ingress.c @@ -17,7 +17,7 @@ #include "test_btf_skc_cls_ingress.skel.h" static struct test_btf_skc_cls_ingress *skel; -struct sockaddr_in6 srv_sa6; +static struct sockaddr_in6 srv_sa6; static __u32 duration; #define PROG_PIN_FILE "/sys/fs/bpf/btf_skc_cls_ingress" |