diff options
| author | Andrii Nakryiko <[email protected]> | 2019-10-07 22:56:04 +0000 |
|---|---|---|
| committer | Alexei Starovoitov <[email protected]> | 2019-10-08 01:44:28 +0000 |
| commit | 32e3e58e4c5910bb0d6024d151c2f559bb7e973c (patch) | |
| tree | de31cc9080a1766f1fb5db447028ada51ea5cedd /tools/bpf/bpftool/main.h | |
| parent | selftests/bpf: Fix dependency ordering for attach_probe test (diff) | |
| download | kernel-32e3e58e4c5910bb0d6024d151c2f559bb7e973c.tar.gz kernel-32e3e58e4c5910bb0d6024d151c2f559bb7e973c.zip | |
bpftool: Fix bpftool build by switching to bpf_object__open_file()
As part of libbpf in 5e61f2707029 ("libbpf: stop enforcing kern_version,
populate it for users") non-LIBBPF_API __bpf_object__open_xattr() API
was removed from libbpf.h header. This broke bpftool, which relied on
that function. This patch fixes the build by switching to newly added
bpf_object__open_file() which provides the same capabilities, but is
official and future-proof API.
v1->v2:
- fix prog_type shadowing (Stanislav).
Fixes: 5e61f2707029 ("libbpf: stop enforcing kern_version, populate it for users")
Reported-by: Stanislav Fomichev <[email protected]>
Signed-off-by: Andrii Nakryiko <[email protected]>
Signed-off-by: Alexei Starovoitov <[email protected]>
Reviewed-by: Stanislav Fomichev <[email protected]>
Link: https://lore.kernel.org/bpf/[email protected]
Diffstat (limited to 'tools/bpf/bpftool/main.h')
| -rw-r--r-- | tools/bpf/bpftool/main.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/bpf/bpftool/main.h b/tools/bpf/bpftool/main.h index af9ad56c303a..2899095f8254 100644 --- a/tools/bpf/bpftool/main.h +++ b/tools/bpf/bpftool/main.h @@ -94,7 +94,7 @@ extern bool json_output; extern bool show_pinned; extern bool block_mount; extern bool verifier_logs; -extern int bpf_flags; +extern bool relaxed_maps; extern struct pinned_obj_table prog_table; extern struct pinned_obj_table map_table; |
