aboutsummaryrefslogtreecommitdiffstats
path: root/tools/lib/bpf/libbpf.c
diff options
context:
space:
mode:
authorJoe Stringer <joe@ovn.org>2016-12-08 21:46:16 -0500
committerArnaldo Carvalho de Melo <acme@redhat.com>2016-12-15 14:25:47 -0500
commita5580c7f7a6d078696458d283df5d6547ad1c740 (patch)
tree68c3e9b629a16ef97af98fd6eadb4bead6eafaa0 /tools/lib/bpf/libbpf.c
parent83d994d02bf4594d6bfa9b2b67befb6cff7f9380 (diff)
tools lib bpf: Add flags to bpf_create_map()
Commit 6c905981743 ("bpf: pre-allocate hash map elements") introduces map_flags to bpf_attr for BPF_MAP_CREATE command. Expose this new parameter in libbpf. By exposing it, users can access flags such as whether or not to preallocate the map. Signed-off-by: Joe Stringer <joe@ovn.org> Acked-by: Wang Nan <wangnan0@huawei.com> Cc: Alexei Starovoitov <ast@fb.com> Cc: Daniel Borkmann <daniel@iogearbox.net> Link: http://lkml.kernel.org/r/20161209024620.31660-4-joe@ovn.org [ Added clarifying comment made by Wang Nan ] Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
Diffstat (limited to 'tools/lib/bpf/libbpf.c')
-rw-r--r--tools/lib/bpf/libbpf.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/tools/lib/bpf/libbpf.c b/tools/lib/bpf/libbpf.c
index 2e974593f3e8..84e6b35da4bd 100644
--- a/tools/lib/bpf/libbpf.c
+++ b/tools/lib/bpf/libbpf.c
@@ -854,7 +854,8 @@ bpf_object__create_maps(struct bpf_object *obj)
854 *pfd = bpf_create_map(def->type, 854 *pfd = bpf_create_map(def->type,
855 def->key_size, 855 def->key_size,
856 def->value_size, 856 def->value_size,
857 def->max_entries); 857 def->max_entries,
858 0);
858 if (*pfd < 0) { 859 if (*pfd < 0) {
859 size_t j; 860 size_t j;
860 int err = *pfd; 861 int err = *pfd;