diff options
author | Jiri Benc <jbenc@redhat.com> | 2018-03-06 14:50:10 +0100 |
---|---|---|
committer | Daniel Borkmann <daniel@iogearbox.net> | 2018-03-06 22:51:00 +0100 |
commit | 20d5de51e7052ae3fb645d8c5c584ee7383b2a93 (patch) | |
tree | 542a78539cf96938f8dc3c8625b46e9c1e775ba5 /tools/bpf/bpftool/common.c | |
parent | d02f51cbcf12b09ab945873e35046045875eed9a (diff) | |
download | linux-20d5de51e7052ae3fb645d8c5c584ee7383b2a93.tar.gz linux-20d5de51e7052ae3fb645d8c5c584ee7383b2a93.tar.bz2 linux-20d5de51e7052ae3fb645d8c5c584ee7383b2a93.zip |
tools: bpftool: fix compilation with older headers
Compilation of bpftool on a distro that lacks eBPF support in the installed
kernel headers fails with:
common.c: In function ‘is_bpffs’:
common.c:96:40: error: ‘BPF_FS_MAGIC’ undeclared (first use in this function)
return (unsigned long)st_fs.f_type == BPF_FS_MAGIC;
^
Fix this the same way it is already in tools/lib/bpf/libbpf.c and
tools/lib/api/fs/fs.c.
Signed-off-by: Jiri Benc <jbenc@redhat.com>
Signed-off-by: Daniel Borkmann <daniel@iogearbox.net>
Diffstat (limited to 'tools/bpf/bpftool/common.c')
-rw-r--r-- | tools/bpf/bpftool/common.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/tools/bpf/bpftool/common.c b/tools/bpf/bpftool/common.c index 0b482c0070e0..465995281dcd 100644 --- a/tools/bpf/bpftool/common.c +++ b/tools/bpf/bpftool/common.c @@ -55,6 +55,10 @@ #include "main.h" +#ifndef BPF_FS_MAGIC +#define BPF_FS_MAGIC 0xcafe4a11 +#endif + void p_err(const char *fmt, ...) { va_list ap; |