libbpf: Fix use of PT_REGS_PARM macros with vmlinux.h
authorAndrii Nakryiko <andriin@fb.com>
Sat, 29 Feb 2020 23:11:10 +0000 (15:11 -0800)
committerAlexei Starovoitov <ast@kernel.org>
Tue, 3 Mar 2020 00:25:14 +0000 (16:25 -0800)
commitfd56e0058412fb542db0e9556f425747cf3f8366
treefa11ac72a2bc294ab41dad229bb3142ef5996083
parentca7dc2791b507f842d73e46b1a0453b36b69ffc2
libbpf: Fix use of PT_REGS_PARM macros with vmlinux.h

Add detection of vmlinux.h to bpf_tracing.h header for PT_REGS macro.
Currently, BPF applications have to define __KERNEL__ symbol to use correct
definition of struct pt_regs on x86 arch. This is due to different field names
under internal kernel vs UAPI conditions. To make this more transparent for
users, detect vmlinux.h by checking __VMLINUX_H__ symbol.

Signed-off-by: Andrii Nakryiko <andriin@fb.com>
Signed-off-by: Alexei Starovoitov <ast@kernel.org>
Link: https://lore.kernel.org/bpf/20200229231112.1240137-3-andriin@fb.com
tools/lib/bpf/bpf_tracing.h