diff options
author | Alexander Duyck <alexanderduyck@fb.com> | 2020-11-03 13:35:19 -0800 |
---|---|---|
committer | Alexei Starovoitov <ast@kernel.org> | 2020-11-03 17:52:37 -0800 |
commit | 21b5177e997c98643eaabd4b917f2e287395af86 (patch) | |
tree | 0be3b5fecc5789017fb95e9e3acff9ac7b23e96b /tools/testing/selftests/bpf/test_tcpbpf.h | |
parent | 0a099d1429c709020277d24a460d11ff8356a080 (diff) |
selftest/bpf: Use global variables instead of maps for test_tcpbpf_kern
Use global variables instead of global_map and sockopt_results_map to track
test data. Doing this greatly simplifies the code as there is not need to
take the extra steps of updating the maps or looking up elements.
Signed-off-by: Alexander Duyck <alexanderduyck@fb.com>
Signed-off-by: Alexei Starovoitov <ast@kernel.org>
Acked-by: Martin KaFai Lau <kafai@fb.com>
Link: https://lore.kernel.org/bpf/160443931900.1086697.6588858453575682351.stgit@localhost.localdomain
Diffstat (limited to 'tools/testing/selftests/bpf/test_tcpbpf.h')
-rw-r--r-- | tools/testing/selftests/bpf/test_tcpbpf.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/tools/testing/selftests/bpf/test_tcpbpf.h b/tools/testing/selftests/bpf/test_tcpbpf.h index 6220b95cbd02..0ed33521cbbb 100644 --- a/tools/testing/selftests/bpf/test_tcpbpf.h +++ b/tools/testing/selftests/bpf/test_tcpbpf.h @@ -14,5 +14,7 @@ struct tcpbpf_globals { __u64 bytes_acked; __u32 num_listen; __u32 num_close_events; + __u32 tcp_save_syn; + __u32 tcp_saved_syn; }; #endif |