aboutsummaryrefslogtreecommitdiffstats
path: root/tools/lib/bpf/libbpf.h
diff options
context:
space:
mode:
authorChristy Lee <christylee@fb.com>2022-01-24 17:09:17 -0800
committerAndrii Nakryiko <andrii@kernel.org>2022-01-24 20:54:31 -0800
commitfc76387003d6907e298fd6b87f13847c4edddab1 (patch)
tree2e3780bae8b952dd5da170cd08b4d070cbeb3ed2 /tools/lib/bpf/libbpf.h
parentMerge branch 'deprecate bpf_object__open_buffer() API' (diff)
downloadlinux-dev-fc76387003d6907e298fd6b87f13847c4edddab1.tar.xz
linux-dev-fc76387003d6907e298fd6b87f13847c4edddab1.zip
libbpf: Mark bpf_object__open_xattr() deprecated
Mark bpf_object__open_xattr() as deprecated, use bpf_object__open_file() instead. [0] Closes: https://github.com/libbpf/libbpf/issues/287 Signed-off-by: Christy Lee <christylee@fb.com> Signed-off-by: Andrii Nakryiko <andrii@kernel.org> Link: https://lore.kernel.org/bpf/20220125010917.679975-1-christylee@fb.com
Diffstat (limited to 'tools/lib/bpf/libbpf.h')
-rw-r--r--tools/lib/bpf/libbpf.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/tools/lib/bpf/libbpf.h b/tools/lib/bpf/libbpf.h
index 281cb19591e5..1bd021560f9c 100644
--- a/tools/lib/bpf/libbpf.h
+++ b/tools/lib/bpf/libbpf.h
@@ -184,6 +184,7 @@ LIBBPF_DEPRECATED_SINCE(0, 8, "use bpf_object__open_mem() instead")
LIBBPF_API struct bpf_object *
bpf_object__open_buffer(const void *obj_buf, size_t obj_buf_sz,
const char *name);
+LIBBPF_DEPRECATED_SINCE(0, 7, "use bpf_object__open_file() instead")
LIBBPF_API struct bpf_object *
bpf_object__open_xattr(struct bpf_object_open_attr *attr);