diff options
| author | Andrii Nakryiko <andrii@kernel.org> | 2024-02-01 09:20:26 -0800 |
|---|---|---|
| committer | Daniel Borkmann <daniel@iogearbox.net> | 2024-02-01 22:16:12 +0100 |
| commit | b9551da8cf3ade01a50316df8a618fd945723ee0 (patch) | |
| tree | 697abd705136a3f892e83bbe4f4d9041c774150c /tools/lib/bpf/libbpf.map | |
| parent | c81a8ab196b5083d5109a51585fcc24fa2055a77 (diff) | |
| download | linux-next-b9551da8cf3ade01a50316df8a618fd945723ee0.tar.gz linux-next-b9551da8cf3ade01a50316df8a618fd945723ee0.zip | |
libbpf: Add missed btf_ext__raw_data() API
Another API that was declared in libbpf.map but actual implementation
was missing. btf_ext__get_raw_data() was intended as a discouraged alias
to consistently-named btf_ext__raw_data(), so make this an actuality.
Fixes: 20eccf29e297 ("libbpf: hide and discourage inconsistently named getters")
Signed-off-by: Andrii Nakryiko <andrii@kernel.org>
Signed-off-by: Daniel Borkmann <daniel@iogearbox.net>
Acked-by: Eduard Zingerman <eddyz87@gmail.com>
Link: https://lore.kernel.org/bpf/20240201172027.604869-5-andrii@kernel.org
Diffstat (limited to 'tools/lib/bpf/libbpf.map')
| -rw-r--r-- | tools/lib/bpf/libbpf.map | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/lib/bpf/libbpf.map b/tools/lib/bpf/libbpf.map index 386964f572a8..86804fd90dd1 100644 --- a/tools/lib/bpf/libbpf.map +++ b/tools/lib/bpf/libbpf.map @@ -325,7 +325,6 @@ LIBBPF_0.7.0 { bpf_xdp_detach; bpf_xdp_query; bpf_xdp_query_id; - btf_ext__raw_data; libbpf_probe_bpf_helper; libbpf_probe_bpf_map_type; libbpf_probe_bpf_prog_type; @@ -413,4 +412,5 @@ LIBBPF_1.4.0 { global: bpf_token_create; btf__new_split; + btf_ext__raw_data; } LIBBPF_1.3.0; |
