OSDN Git Service

selftests/bpf: Remove unused variable from bpf_sk_assign test
authorEyal Birger <eyal.birger@gmail.com>
Tue, 29 Mar 2022 15:49:14 +0000 (18:49 +0300)
committerDaniel Borkmann <daniel@iogearbox.net>
Fri, 1 Apr 2022 20:35:29 +0000 (22:35 +0200)
Was never used in bpf_sk_assign_test(), and was removed from handle_{tcp,udp}()
in commit 0b9ad56b1ea6 ("selftests/bpf: Use SOCKMAP for server sockets in
bpf_sk_assign test").

Fixes: 0b9ad56b1ea6 ("selftests/bpf: Use SOCKMAP for server sockets in bpf_sk_assign test")
Signed-off-by: Eyal Birger <eyal.birger@gmail.com>
Signed-off-by: Daniel Borkmann <daniel@iogearbox.net>
Link: https://lore.kernel.org/bpf/20220329154914.3718658-1-eyal.birger@gmail.com
tools/testing/selftests/bpf/progs/test_sk_assign.c

index 02f7935..98c6493 100644 (file)
@@ -89,7 +89,6 @@ get_tuple(struct __sk_buff *skb, bool *ipv4, bool *tcp)
 static inline int
 handle_udp(struct __sk_buff *skb, struct bpf_sock_tuple *tuple, bool ipv4)
 {
-       struct bpf_sock_tuple ln = {0};
        struct bpf_sock *sk;
        const int zero = 0;
        size_t tuple_len;
@@ -121,7 +120,6 @@ assign:
 static inline int
 handle_tcp(struct __sk_buff *skb, struct bpf_sock_tuple *tuple, bool ipv4)
 {
-       struct bpf_sock_tuple ln = {0};
        struct bpf_sock *sk;
        const int zero = 0;
        size_t tuple_len;
@@ -161,7 +159,7 @@ assign:
 SEC("tc")
 int bpf_sk_assign_test(struct __sk_buff *skb)
 {
-       struct bpf_sock_tuple *tuple, ln = {0};
+       struct bpf_sock_tuple *tuple;
        bool ipv4 = false;
        bool tcp = false;
        int tuple_len;