From: Andrii Nakryiko Date: Wed, 24 Nov 2021 19:32:32 +0000 (-0800) Subject: libbpf: Prevent deprecation warnings in xsk.c X-Git-Tag: v6.1-rc5~2306^2~228^2~47 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=99a12a32fee4f740af2f36bb8f64e11c026f3389;p=platform%2Fkernel%2Flinux-starfive.git libbpf: Prevent deprecation warnings in xsk.c xsk.c is using own APIs that are marked for deprecation internally. Given xsk.c and xsk.h will be gone in libbpf 1.0, there is no reason to do public vs internal function split just to avoid deprecation warnings. So just add a pragma to silence deprecation warnings (until the code is removed completely). Signed-off-by: Andrii Nakryiko Signed-off-by: Daniel Borkmann Link: https://lore.kernel.org/bpf/20211124193233.3115996-4-andrii@kernel.org --- diff --git a/tools/lib/bpf/xsk.c b/tools/lib/bpf/xsk.c index f1c2907..e8d94c6 100644 --- a/tools/lib/bpf/xsk.c +++ b/tools/lib/bpf/xsk.c @@ -35,6 +35,11 @@ #include "libbpf_internal.h" #include "xsk.h" +/* entire xsk.h and xsk.c is going away in libbpf 1.0, so ignore all internal + * uses of deprecated APIs + */ +#pragma GCC diagnostic ignored "-Wdeprecated-declarations" + #ifndef SOL_XDP #define SOL_XDP 283 #endif