selftests/bpf: Fix selftests build with old system-wide headers
authorAndrii Nakryiko <andrii@kernel.org>
Thu, 17 Jun 2021 04:14:46 +0000 (21:14 -0700)
committerDaniel Borkmann <daniel@iogearbox.net>
Thu, 17 Jun 2021 11:05:10 +0000 (13:05 +0200)
migrate_reuseport.c selftest relies on having TCP_FASTOPEN_CONNECT defined in
system-wide netinet/tcp.h. Selftests can use up-to-date uapi/linux/tcp.h, but
that one doesn't have SOL_TCP. So instead of switching everything to uapi
header, add #define for TCP_FASTOPEN_CONNECT to fix the build.

Fixes: c9d0bdef89a6 ("bpf: Test BPF_SK_REUSEPORT_SELECT_OR_MIGRATE.")
Signed-off-by: Andrii Nakryiko <andrii@kernel.org>
Signed-off-by: Daniel Borkmann <daniel@iogearbox.net>
Acked-by: Kuniyuki Iwashima <kuniyu@amazon.co.jp>
Link: https://lore.kernel.org/bpf/20210617041446.425283-1-andrii@kernel.org
tools/testing/selftests/bpf/prog_tests/migrate_reuseport.c

index 0fa3f750567dea7623cc4b8b6c7f191d6a418b4a..59adb4715394fa99391e1868dc9014b76e9da612 100644 (file)
 #include "test_migrate_reuseport.skel.h"
 #include "network_helpers.h"
 
+#ifndef TCP_FASTOPEN_CONNECT
+#define TCP_FASTOPEN_CONNECT 30
+#endif
+
 #define IFINDEX_LO 1
 
 #define NR_SERVERS 5