diff options
author | Alexei Starovoitov <ast@plumgrid.com> | 2014-11-13 17:36:49 -0800 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2014-11-18 13:44:00 -0500 |
commit | d0003ec01c667b731c139e23de3306a8b328ccf5 (patch) | |
tree | a0156f2487c49537507d46f730c9e9ca9c4667c4 /kernel/bpf/Makefile | |
parent | ffb65f27a15583379567b6a59a9758163b7f5750 (diff) | |
download | blackbird-op-linux-d0003ec01c667b731c139e23de3306a8b328ccf5.tar.gz blackbird-op-linux-d0003ec01c667b731c139e23de3306a8b328ccf5.zip |
bpf: allow eBPF programs to use maps
expose bpf_map_lookup_elem(), bpf_map_update_elem(), bpf_map_delete_elem()
map accessors to eBPF programs
Signed-off-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/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/kernel/bpf/Makefile b/kernel/bpf/Makefile index 72ec98ba2d42..a5ae60f0b0a2 100644 --- a/kernel/bpf/Makefile +++ b/kernel/bpf/Makefile @@ -1,5 +1,5 @@ obj-y := core.o -obj-$(CONFIG_BPF_SYSCALL) += syscall.o verifier.o hashtab.o arraymap.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 |