diff options
author | Stanislav Fomichev <sdf@google.com> | 2019-09-04 19:25:06 +0300 |
---|---|---|
committer | Alexei Starovoitov <ast@kernel.org> | 2019-09-06 19:59:05 +0300 |
commit | 9a365e67d8bbcfff47063a4eeaa98fd3668e223a (patch) | |
tree | 434bddf7f28dc327f30e9794a5ec4a9d661e30e9 /tools/testing/selftests/bpf/test_progs.h | |
parent | 4a64742168ce9e9972dab3f684629845c6e6dc67 (diff) | |
download | linux-9a365e67d8bbcfff47063a4eeaa98fd3668e223a.tar.xz |
selftests/bpf: test_progs: convert test_sockopt_sk
Move the files, adjust includes, remove entry from Makefile & .gitignore
Signed-off-by: Stanislav Fomichev <sdf@google.com>
Signed-off-by: Alexei Starovoitov <ast@kernel.org>
Diffstat (limited to 'tools/testing/selftests/bpf/test_progs.h')
-rw-r--r-- | tools/testing/selftests/bpf/test_progs.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/tools/testing/selftests/bpf/test_progs.h b/tools/testing/selftests/bpf/test_progs.h index e518bd5da3e2..0c48f64f732b 100644 --- a/tools/testing/selftests/bpf/test_progs.h +++ b/tools/testing/selftests/bpf/test_progs.h @@ -16,9 +16,10 @@ typedef __u16 __sum16; #include <linux/if_packet.h> #include <linux/ip.h> #include <linux/ipv6.h> -#include <linux/tcp.h> +#include <netinet/tcp.h> #include <linux/filter.h> #include <linux/perf_event.h> +#include <linux/socket.h> #include <linux/unistd.h> #include <sys/ioctl.h> |