aboutsummaryrefslogtreecommitdiffstats
path: root/tools/lib/bpf/btf.c
diff options
context:
space:
mode:
authorVincent Minet <vincent@vincent-minet.net>2021-12-10 07:31:12 +0100
committerAndrii Nakryiko <andrii@kernel.org>2021-12-10 15:35:29 -0800
commitb69c5c07a66ee569b8ccdc0cb567fe0622c89ea5 (patch)
treec66f4c7970eba06ea111b42379c2f3e279cf3f85 /tools/lib/bpf/btf.c
parentMerge branch 'Enhance and rework logging controls in libbpf' (diff)
downloadlinux-dev-b69c5c07a66ee569b8ccdc0cb567fe0622c89ea5.tar.xz
linux-dev-b69c5c07a66ee569b8ccdc0cb567fe0622c89ea5.zip
libbpf: Fix typo in btf__dedup@LIBBPF_0.0.2 definition
The btf__dedup_deprecated name was misspelled in the definition of the compat symbol for btf__dedup. This leads it to be missing from the shared library. This fixes it. Fixes: 957d350a8b94 ("libbpf: Turn btf_dedup_opts into OPTS-based struct") Signed-off-by: Vincent Minet <vincent@vincent-minet.net> Signed-off-by: Andrii Nakryiko <andrii@kernel.org> Link: https://lore.kernel.org/bpf/20211210063112.80047-1-vincent@vincent-minet.net
Diffstat (limited to '')
-rw-r--r--tools/lib/bpf/btf.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/lib/bpf/btf.c b/tools/lib/bpf/btf.c
index e171424192ae..9aa19c89f758 100644
--- a/tools/lib/bpf/btf.c
+++ b/tools/lib/bpf/btf.c
@@ -3107,7 +3107,7 @@ done:
return libbpf_err(err);
}
-COMPAT_VERSION(bpf__dedup_deprecated, btf__dedup, LIBBPF_0.0.2)
+COMPAT_VERSION(btf__dedup_deprecated, btf__dedup, LIBBPF_0.0.2)
int btf__dedup_deprecated(struct btf *btf, struct btf_ext *btf_ext, const void *unused_opts)
{
LIBBPF_OPTS(btf_dedup_opts, opts, .btf_ext = btf_ext);