mirror of
https://github.com/edk2-porting/linux-next.git
synced 2024-12-21 19:53:59 +08:00
521fe8bb58
Fix perf to include libbpf header files with the bpf/ prefix, to be consistent with external users of the library. Signed-off-by: Toke Høiland-Jørgensen <toke@redhat.com> Signed-off-by: Alexei Starovoitov <ast@kernel.org> Acked-by: Andrii Nakryiko <andriin@fb.com> Link: https://lore.kernel.org/bpf/157952560797.1683545.7685921032671386301.stgit@toke.dk
17 lines
460 B
C
17 lines
460 B
C
// SPDX-License-Identifier: GPL-2.0
|
|
|
|
#include <bpf/bpf.h>
|
|
|
|
struct bpf_map SEC("maps") __bpf_stdout__ = {
|
|
.type = BPF_MAP_TYPE_PERF_EVENT_ARRAY,
|
|
.key_size = sizeof(int),
|
|
.value_size = sizeof(u32),
|
|
.max_entries = __NR_CPUS__,
|
|
};
|
|
|
|
#define puts(from) \
|
|
({ const int __len = sizeof(from); \
|
|
char __from[__len] = from; \
|
|
perf_event_output(args, &__bpf_stdout__, BPF_F_CURRENT_CPU, \
|
|
&__from, __len & (sizeof(from) - 1)); })
|