diff options
author | Alexei Starovoitov <ast@kernel.org> | 2019-01-31 18:40:11 -0500 |
---|---|---|
committer | Daniel Borkmann <daniel@iogearbox.net> | 2019-02-01 14:55:39 -0500 |
commit | df5d22facd78e475da2e0d506f239e32cdffaf99 (patch) | |
tree | 9813b34f038fee9301b79f74683496f9025248a5 /tools/lib/bpf/bpf.h | |
parent | e44ac9a22b19eec92d10c7b7c69ad6f1995b4dcf (diff) |
libbpf: introduce bpf_map_lookup_elem_flags()
Introduce
int bpf_map_lookup_elem_flags(int fd, const void *key, void *value, __u64 flags)
helper to lookup array/hash/cgroup_local_storage elements with BPF_F_LOCK flag.
Signed-off-by: Alexei Starovoitov <ast@kernel.org>
Signed-off-by: Daniel Borkmann <daniel@iogearbox.net>
Diffstat (limited to 'tools/lib/bpf/bpf.h')
-rw-r--r-- | tools/lib/bpf/bpf.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/tools/lib/bpf/bpf.h b/tools/lib/bpf/bpf.h index 8f09de482839..ed09eed2dc3b 100644 --- a/tools/lib/bpf/bpf.h +++ b/tools/lib/bpf/bpf.h | |||
@@ -110,6 +110,8 @@ LIBBPF_API int bpf_map_update_elem(int fd, const void *key, const void *value, | |||
110 | __u64 flags); | 110 | __u64 flags); |
111 | 111 | ||
112 | LIBBPF_API int bpf_map_lookup_elem(int fd, const void *key, void *value); | 112 | LIBBPF_API int bpf_map_lookup_elem(int fd, const void *key, void *value); |
113 | LIBBPF_API int bpf_map_lookup_elem_flags(int fd, const void *key, void *value, | ||
114 | __u64 flags); | ||
113 | LIBBPF_API int bpf_map_lookup_and_delete_elem(int fd, const void *key, | 115 | LIBBPF_API int bpf_map_lookup_and_delete_elem(int fd, const void *key, |
114 | void *value); | 116 | void *value); |
115 | LIBBPF_API int bpf_map_delete_elem(int fd, const void *key); | 117 | LIBBPF_API int bpf_map_delete_elem(int fd, const void *key); |