summaryrefslogtreecommitdiffstats
path: root/kernel/bpf/Makefile
diff options
context:
space:
mode:
authorDaniel Borkmann2015-03-01 12:31:41 +0100
committerDavid S. Miller2015-03-01 20:05:18 +0100
commitf91fe17e243d1f279d425071a35e3d41290758a0 (patch)
treebe27553798f8f3490487814275e09644e446c88f /kernel/bpf/Makefile
parentMerge branch 's390-next' (diff)
downloadkernel-qcow2-linux-f91fe17e243d1f279d425071a35e3d41290758a0.tar.gz
kernel-qcow2-linux-f91fe17e243d1f279d425071a35e3d41290758a0.tar.xz
kernel-qcow2-linux-f91fe17e243d1f279d425071a35e3d41290758a0.zip
ebpf: remove kernel test stubs
Now that we have BPF_PROG_TYPE_SOCKET_FILTER up and running, we can remove the test stubs which were added to get the verifier suite up. We can just let the test cases probe under socket filter type instead. In the fill/spill test case, we cannot (yet) access fields from the context (skb), but we may adapt that test case in future. Signed-off-by: Daniel Borkmann <daniel@iogearbox.net> Acked-by: Alexei Starovoitov <ast@plumgrid.com> Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'kernel/bpf/Makefile')
-rw-r--r--kernel/bpf/Makefile3
1 files changed, 0 insertions, 3 deletions
diff --git a/kernel/bpf/Makefile b/kernel/bpf/Makefile
index a5ae60f0b0a2..e6983be12bd3 100644
--- a/kernel/bpf/Makefile
+++ b/kernel/bpf/Makefile
@@ -1,5 +1,2 @@
obj-y := core.o
obj-$(CONFIG_BPF_SYSCALL) += syscall.o verifier.o hashtab.o arraymap.o helpers.o
-ifdef CONFIG_TEST_BPF
-obj-$(CONFIG_BPF_SYSCALL) += test_stub.o
-endif