diff options
author | Andrii Nakryiko <andrii@kernel.org> | 2022-08-16 02:19:28 +0200 |
---|---|---|
committer | Daniel Borkmann <daniel@iogearbox.net> | 2022-08-17 22:42:56 +0200 |
commit | abf84b64e36b175c9c4dd4ecbad2af4329c00041 (patch) | |
tree | 85b3c26128fb7063a19ae071ea52da3e2b76b64d /tools/lib/bpf/bpf.c | |
parent | libbpf: Streamline bpf_attr and perf_event_attr initialization (diff) | |
download | linux-abf84b64e36b175c9c4dd4ecbad2af4329c00041.tar.xz linux-abf84b64e36b175c9c4dd4ecbad2af4329c00041.zip |
libbpf: Clean up deprecated and legacy aliases
Remove three missed deprecated APIs that were aliased to new APIs:
bpf_object__unload, bpf_prog_attach_xattr and btf__load.
Also move legacy API libbpf_find_kernel_btf (aliased to
btf__load_vmlinux_btf) into libbpf_legacy.h.
Signed-off-by: Andrii Nakryiko <andrii@kernel.org>
Signed-off-by: Daniel Borkmann <daniel@iogearbox.net>
Acked-by: Hao Luo <haoluo@google.com>
Link: https://lore.kernel.org/bpf/20220816001929.369487-4-andrii@kernel.org
Diffstat (limited to 'tools/lib/bpf/bpf.c')
-rw-r--r-- | tools/lib/bpf/bpf.c | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/tools/lib/bpf/bpf.c b/tools/lib/bpf/bpf.c index e3a0bd7efa2f..1d49a0352836 100644 --- a/tools/lib/bpf/bpf.c +++ b/tools/lib/bpf/bpf.c @@ -641,11 +641,6 @@ int bpf_prog_attach_opts(int prog_fd, int target_fd, return libbpf_err_errno(ret); } -__attribute__((alias("bpf_prog_attach_opts"))) -int bpf_prog_attach_xattr(int prog_fd, int target_fd, - enum bpf_attach_type type, - const struct bpf_prog_attach_opts *opts); - int bpf_prog_detach(int target_fd, enum bpf_attach_type type) { const size_t attr_sz = offsetofend(union bpf_attr, replace_bpf_fd); |