[PATCH v2 bpf-next 7/9] tools/bpf: sync uapi/bpf.h
From: Alexei Starovoitov <ast@kernel.org>
Date: 2019-01-18 06:13:04
Subsystem:
the rest · Maintainer:
Linus Torvalds
From: Alexei Starovoitov <ast@kernel.org>
Date: 2019-01-18 06:13:04
Subsystem:
the rest · Maintainer:
Linus Torvalds
add BPF_F_LOCK definition to tools/include/uapi/linux/bpf.h Signed-off-by: Alexei Starovoitov <ast@kernel.org> --- tools/include/uapi/linux/bpf.h | 1 + 1 file changed, 1 insertion(+)
diff --git a/tools/include/uapi/linux/bpf.h b/tools/include/uapi/linux/bpf.h
index 30f9dfd40f13..c23eaa284a45 100644
--- a/tools/include/uapi/linux/bpf.h
+++ b/tools/include/uapi/linux/bpf.h@@ -266,6 +266,7 @@ enum bpf_attach_type { #define BPF_ANY 0 /* create new element or update existing */ #define BPF_NOEXIST 1 /* create new element if it didn't exist */ #define BPF_EXIST 2 /* update existing element */ +#define BPF_F_LOCK 4 /* spin_lock-ed map_lookup/map_update */ /* flags for BPF_MAP_CREATE command */ #define BPF_F_NO_PREALLOC (1U << 0)
--
2.17.1