diff options
author | Andrii Nakryiko | 2019-05-24 20:58:56 +0200 |
---|---|---|
committer | Alexei Starovoitov | 2019-05-24 23:05:57 +0200 |
commit | 1d7a08b3bdaec1e25ba7979ff598272b7e34318f (patch) | |
tree | bff336ea4ee5ec871429eccae96bd9d1fdb4764b /tools/lib/bpf/libbpf_internal.h | |
parent | samples: bpf: Do not define bpf_printk macro (diff) | |
download | kernel-qcow2-linux-1d7a08b3bdaec1e25ba7979ff598272b7e34318f.tar.gz kernel-qcow2-linux-1d7a08b3bdaec1e25ba7979ff598272b7e34318f.tar.xz kernel-qcow2-linux-1d7a08b3bdaec1e25ba7979ff598272b7e34318f.zip |
libbpf: ensure libbpf.h is included along libbpf_internal.h
libbpf_internal.h expects a bunch of stuff defined in libbpf.h to be
defined. This patch makes sure that libbpf.h is always included.
Signed-off-by: Andrii Nakryiko <andriin@fb.com>
Signed-off-by: Alexei Starovoitov <ast@kernel.org>
Diffstat (limited to 'tools/lib/bpf/libbpf_internal.h')
-rw-r--r-- | tools/lib/bpf/libbpf_internal.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/tools/lib/bpf/libbpf_internal.h b/tools/lib/bpf/libbpf_internal.h index f3025b4d90e1..850f7bdec5cb 100644 --- a/tools/lib/bpf/libbpf_internal.h +++ b/tools/lib/bpf/libbpf_internal.h @@ -9,6 +9,8 @@ #ifndef __LIBBPF_LIBBPF_INTERNAL_H #define __LIBBPF_LIBBPF_INTERNAL_H +#include "libbpf.h" + #define BTF_INFO_ENC(kind, kind_flag, vlen) \ ((!!(kind_flag) << 31) | ((kind) << 24) | ((vlen) & BTF_MAX_VLEN)) #define BTF_TYPE_ENC(name, info, size_or_type) (name), (info), (size_or_type) |