1 /* SPDX-License-Identifier: GPL-2.0 */
2 #ifndef __PERF_BPF_EVENT_H
3 #define __PERF_BPF_EVENT_H
5 #include <linux/compiler.h>
14 #ifdef HAVE_LIBBPF_SUPPORT
15 int machine__process_bpf_event(struct machine
*machine
, union perf_event
*event
,
16 struct perf_sample
*sample
);
18 int perf_event__synthesize_bpf_events(struct perf_tool
*tool
,
19 perf_event__handler_t process
,
20 struct machine
*machine
,
21 struct record_opts
*opts
);
23 static inline int machine__process_bpf_event(struct machine
*machine __maybe_unused
,
24 union perf_event
*event __maybe_unused
,
25 struct perf_sample
*sample __maybe_unused
)
30 static inline int perf_event__synthesize_bpf_events(struct perf_tool
*tool __maybe_unused
,
31 perf_event__handler_t process __maybe_unused
,
32 struct machine
*machine __maybe_unused
,
33 struct record_opts
*opts __maybe_unused
)
37 #endif // HAVE_LIBBPF_SUPPORT