tools/perf/util/bpf-event.h

Source file repositories/reference/linux-study-clean/tools/perf/util/bpf-event.h

File Facts

System
Linux kernel
Corpus path
tools/perf/util/bpf-event.h
Extension
.h
Size
1711 bytes
Lines
74
Domain
Support Tooling And Documentation
Bucket
tools
Inferred role
Support Tooling And Documentation: implementation source
Status
source implementation candidate

Why This File Exists

Repository support layer: documentation, build tooling, samples, user-space helper tools, generated initramfs support, licenses, and validation utilities.

Dependency Surface

Detected Declarations

Annotated Snippet

struct bpf_metadata {
	union perf_event *event;
	char		 **prog_names;
	__u64		 nr_prog_names;
};

struct bpf_prog_info_node {
	struct perf_bpil		*info_linear;
	struct bpf_metadata		*metadata;
	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 evlist__add_bpf_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);
void bpf_metadata_free(struct bpf_metadata *metadata);
#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 evlist__add_bpf_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)
{

}

static inline void bpf_metadata_free(struct bpf_metadata *metadata __maybe_unused)
{

}
#endif // HAVE_LIBBPF_SUPPORT
#endif

Annotation

Implementation Notes