diff options
author | Alexei Starovoitov <ast@plumgrid.com> | 2014-05-08 17:10:52 -0400 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2014-05-12 00:23:55 -0400 |
commit | 64a8946b447e418b4283c3573ef397980cca0cd8 (patch) | |
tree | af67f72649e1e3ac18a74bdb425ad3f48f611875 /lib/Makefile | |
parent | 9739eef13c926645fbf88bcb77e66442fa75d688 (diff) |
net: filter: BPF testsuite
The testsuite covers classic and internal BPF instructions.
It is particularly useful for JIT compiler developers.
Adds to "net" selftest target.
The testsuite can be used as a set of micro-benchmarks.
It measures execution time of each BPF program in nsec.
This patch adds core framework.
Signed-off-by: Alexei Starovoitov <ast@plumgrid.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'lib/Makefile')
-rw-r--r-- | lib/Makefile | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/Makefile b/lib/Makefile index 0cd7b68e1382..b2be1ef1e8ec 100644 --- a/lib/Makefile +++ b/lib/Makefile | |||
@@ -33,6 +33,7 @@ obj-y += kstrtox.o | |||
33 | obj-$(CONFIG_TEST_KSTRTOX) += test-kstrtox.o | 33 | obj-$(CONFIG_TEST_KSTRTOX) += test-kstrtox.o |
34 | obj-$(CONFIG_TEST_MODULE) += test_module.o | 34 | obj-$(CONFIG_TEST_MODULE) += test_module.o |
35 | obj-$(CONFIG_TEST_USER_COPY) += test_user_copy.o | 35 | obj-$(CONFIG_TEST_USER_COPY) += test_user_copy.o |
36 | obj-$(CONFIG_TEST_BPF) += test_bpf.o | ||
36 | 37 | ||
37 | ifeq ($(CONFIG_DEBUG_KOBJECT),y) | 38 | ifeq ($(CONFIG_DEBUG_KOBJECT),y) |
38 | CFLAGS_kobject.o += -DDEBUG | 39 | CFLAGS_kobject.o += -DDEBUG |