aboutsummaryrefslogtreecommitdiffstats
path: root/tools/lib/bpf/netlink.c
diff options
context:
space:
mode:
authorAndrii Nakryiko <[email protected]>2020-08-19 01:36:06 +0000
committerAlexei Starovoitov <[email protected]>2020-08-19 01:38:25 +0000
commit85367030a6c7ef3373347cf816c698995074f6f0 (patch)
treeb0f4b19f18ec9d8d64893a4b7a3e4790851185e2 /tools/lib/bpf/netlink.c
parenttools/bpftool: Remove libbpf_internal.h usage in bpftool (diff)
downloadkernel-85367030a6c7ef3373347cf816c698995074f6f0.tar.gz
kernel-85367030a6c7ef3373347cf816c698995074f6f0.zip
libbpf: Centralize poisoning and poison reallocarray()
Most of libbpf source files already include libbpf_internal.h, so it's a good place to centralize identifier poisoning. So move kernel integer type poisoning there. And also add reallocarray to a poison list to prevent accidental use of it. libbpf_reallocarray() should be used universally instead. Signed-off-by: Andrii Nakryiko <[email protected]> Signed-off-by: Alexei Starovoitov <[email protected]> Link: https://lore.kernel.org/bpf/[email protected]
Diffstat (limited to 'tools/lib/bpf/netlink.c')
-rw-r--r--tools/lib/bpf/netlink.c3
1 files changed, 0 insertions, 3 deletions
diff --git a/tools/lib/bpf/netlink.c b/tools/lib/bpf/netlink.c
index 2465538a5ba9..4dd73de00b6f 100644
--- a/tools/lib/bpf/netlink.c
+++ b/tools/lib/bpf/netlink.c
@@ -15,9 +15,6 @@
#include "libbpf_internal.h"
#include "nlattr.h"
-/* make sure libbpf doesn't use kernel-only integer typedefs */
-#pragma GCC poison u8 u16 u32 u64 s8 s16 s32 s64
-
#ifndef SOL_NETLINK
#define SOL_NETLINK 270
#endif