mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-15 00:04:15 +08:00
ea49e01cfa
Those are the only routines using the perf_event__handler_t typedef and are all related, so move to a separate header to reduce the header dependency tree, lots of places were getting event.h and even stdio.h, limits.h indirectly, so fix those as well. Cc: Adrian Hunter <adrian.hunter@intel.com> Cc: Jiri Olsa <jolsa@kernel.org> Cc: Namhyung Kim <namhyung@kernel.org> Link: https://lkml.kernel.org/n/tip-yvx9u1mf7baq6cu1abfhbqgs@git.kernel.org Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
63 lines
1.4 KiB
C
63 lines
1.4 KiB
C
/* SPDX-License-Identifier: GPL-2.0 */
|
|
#ifndef __PERF_BPF_EVENT_H
|
|
#define __PERF_BPF_EVENT_H
|
|
|
|
#include <linux/compiler.h>
|
|
#include <linux/rbtree.h>
|
|
#include <pthread.h>
|
|
#include <api/fd/array.h>
|
|
#include <stdio.h>
|
|
|
|
struct bpf_prog_info;
|
|
struct machine;
|
|
union perf_event;
|
|
struct perf_env;
|
|
struct perf_sample;
|
|
struct perf_session;
|
|
struct record_opts;
|
|
struct evlist;
|
|
struct target;
|
|
|
|
struct bpf_prog_info_node {
|
|
struct bpf_prog_info_linear *info_linear;
|
|
struct rb_node rb_node;
|
|
};
|
|
|
|
struct btf_node {
|
|
struct rb_node rb_node;
|
|
u32 id;
|
|
u32 data_size;
|
|
char data[];
|
|
};
|
|
|
|
#ifdef HAVE_LIBBPF_SUPPORT
|
|
int machine__process_bpf(struct machine *machine, union perf_event *event,
|
|
struct perf_sample *sample);
|
|
int bpf_event__add_sb_event(struct evlist **evlist,
|
|
struct perf_env *env);
|
|
void bpf_event__print_bpf_prog_info(struct bpf_prog_info *info,
|
|
struct perf_env *env,
|
|
FILE *fp);
|
|
#else
|
|
static inline int machine__process_bpf(struct machine *machine __maybe_unused,
|
|
union perf_event *event __maybe_unused,
|
|
struct perf_sample *sample __maybe_unused)
|
|
{
|
|
return 0;
|
|
}
|
|
|
|
static inline int bpf_event__add_sb_event(struct evlist **evlist __maybe_unused,
|
|
struct perf_env *env __maybe_unused)
|
|
{
|
|
return 0;
|
|
}
|
|
|
|
static inline void bpf_event__print_bpf_prog_info(struct bpf_prog_info *info __maybe_unused,
|
|
struct perf_env *env __maybe_unused,
|
|
FILE *fp __maybe_unused)
|
|
{
|
|
|
|
}
|
|
#endif // HAVE_LIBBPF_SUPPORT
|
|
#endif
|