mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git
synced 2024-11-01 08:58:07 +00:00
61d007138a
So that we don't always carry that __bpf_output__ map, leaving that to the scripts wanting to use that facility. 'perf trace' will be changed to look if that map is present and only setup the bpf-output events if so. Cc: Adrian Hunter <adrian.hunter@intel.com> Cc: Jiri Olsa <jolsa@kernel.org> Cc: Namhyung Kim <namhyung@kernel.org> Cc: Wang Nan <wangnan0@huawei.com> Link: https://lkml.kernel.org/n/tip-azwys8irxqx9053vpajr0k5h@git.kernel.org Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
16 lines
456 B
C
16 lines
456 B
C
// SPDX-License-Identifier: GPL-2.0
|
|
|
|
#include <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)); })
|