diff options
author | Alexei Starovoitov <ast@plumgrid.com> | 2014-11-14 02:36:48 +0100 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2014-11-18 19:43:59 +0100 |
commit | ffb65f27a15583379567b6a59a9758163b7f5750 (patch) | |
tree | 055058bbf98518f31a3aebf6f1ac425f70b1f71a /samples/bpf/Makefile | |
parent | bpf: fix BPF_MAP_LOOKUP_ELEM command return code (diff) | |
download | linux-ffb65f27a15583379567b6a59a9758163b7f5750.tar.xz linux-ffb65f27a15583379567b6a59a9758163b7f5750.zip |
bpf: add a testsuite for eBPF maps
. check error conditions and sanity of hash and array map APIs
. check large maps (that kernel gracefully switches to vmalloc from kmalloc)
. check multi-process parallel access and stress test
Signed-off-by: Alexei Starovoitov <ast@plumgrid.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'samples/bpf/Makefile')
-rw-r--r-- | samples/bpf/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/samples/bpf/Makefile b/samples/bpf/Makefile index 634391797856..0718d9ce4619 100644 --- a/samples/bpf/Makefile +++ b/samples/bpf/Makefile @@ -2,9 +2,10 @@ obj- := dummy.o # List of programs to build -hostprogs-y := test_verifier +hostprogs-y := test_verifier test_maps test_verifier-objs := test_verifier.o libbpf.o +test_maps-objs := test_maps.o libbpf.o # Tell kbuild to always build the programs always := $(hostprogs-y) |