mirror of
git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2025-08-05 16:54:27 +00:00

Here's some example "perf script -D" output for the new event type. The ": unhandled!" message is from tool.c, analogous to other behavior there. I've elided some rows with all NUL characters for brevity, and I wrapped one of the >75-column lines to fit in the commit guidelines. 0x50fc8@perf.data [0x260]: event: 84 . . ... raw event: size 608 bytes . 0000: 54 00 00 00 00 00 60 02 62 70 66 5f 70 72 6f 67 T.....`.bpf_prog . 0010: 5f 31 65 30 61 32 65 33 36 36 65 35 36 66 31 61 _1e0a2e366e56f1a . 0020: 32 5f 70 65 72 66 5f 73 61 6d 70 6c 65 5f 66 69 2_perf_sample_fi . 0030: 6c 74 65 72 00 00 00 00 00 00 00 00 00 00 00 00 lter............ . 0040: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ [...] . 0110: 74 65 73 74 5f 76 61 6c 75 65 00 00 00 00 00 00 test_value...... . 0120: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ [...] . 0150: 34 32 00 00 00 00 00 00 00 00 00 00 00 00 00 00 42.............. . 0160: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ [...] 0 0x50fc8 [0x260]: PERF_RECORD_BPF_METADATA \ prog bpf_prog_1e0a2e366e56f1a2_perf_sample_filter entry 0: test_value = 42 : unhandled! Signed-off-by: Blake Jones <blakejones@google.com> Link: https://lore.kernel.org/r/20250612194939.162730-5-blakejones@google.com Signed-off-by: Namhyung Kim <namhyung@kernel.org>
103 lines
2.3 KiB
C
103 lines
2.3 KiB
C
/* SPDX-License-Identifier: GPL-2.0 */
|
|
#ifndef __PERF_TOOL_H
|
|
#define __PERF_TOOL_H
|
|
|
|
#include <stdbool.h>
|
|
|
|
#include <linux/types.h>
|
|
|
|
struct perf_session;
|
|
union perf_event;
|
|
struct evlist;
|
|
struct evsel;
|
|
struct perf_sample;
|
|
struct perf_tool;
|
|
struct machine;
|
|
struct ordered_events;
|
|
|
|
typedef int (*event_sample)(const struct perf_tool *tool, union perf_event *event,
|
|
struct perf_sample *sample,
|
|
struct evsel *evsel, struct machine *machine);
|
|
|
|
typedef int (*event_op)(const struct perf_tool *tool, union perf_event *event,
|
|
struct perf_sample *sample, struct machine *machine);
|
|
|
|
typedef int (*event_attr_op)(const struct perf_tool *tool,
|
|
union perf_event *event,
|
|
struct evlist **pevlist);
|
|
|
|
typedef int (*event_op2)(struct perf_session *session, union perf_event *event);
|
|
typedef s64 (*event_op3)(struct perf_session *session, union perf_event *event);
|
|
typedef int (*event_op4)(struct perf_session *session, union perf_event *event, u64 data,
|
|
const char *str);
|
|
|
|
typedef int (*event_oe)(const struct perf_tool *tool, union perf_event *event,
|
|
struct ordered_events *oe);
|
|
|
|
enum show_feature_header {
|
|
SHOW_FEAT_NO_HEADER = 0,
|
|
SHOW_FEAT_HEADER,
|
|
SHOW_FEAT_HEADER_FULL_INFO,
|
|
};
|
|
|
|
struct perf_tool {
|
|
event_sample sample,
|
|
read;
|
|
event_op mmap,
|
|
mmap2,
|
|
comm,
|
|
namespaces,
|
|
cgroup,
|
|
fork,
|
|
exit,
|
|
lost,
|
|
lost_samples,
|
|
aux,
|
|
itrace_start,
|
|
aux_output_hw_id,
|
|
context_switch,
|
|
throttle,
|
|
unthrottle,
|
|
ksymbol,
|
|
bpf,
|
|
text_poke;
|
|
|
|
event_attr_op attr;
|
|
event_attr_op event_update;
|
|
event_op2 tracing_data;
|
|
event_oe finished_round;
|
|
event_op2 build_id,
|
|
id_index,
|
|
auxtrace_info,
|
|
auxtrace_error,
|
|
time_conv,
|
|
thread_map,
|
|
cpu_map,
|
|
stat_config,
|
|
stat,
|
|
stat_round,
|
|
feature,
|
|
finished_init,
|
|
bpf_metadata;
|
|
event_op4 compressed;
|
|
event_op3 auxtrace;
|
|
bool ordered_events;
|
|
bool ordering_requires_timestamps;
|
|
bool namespace_events;
|
|
bool cgroup_events;
|
|
bool no_warn;
|
|
bool dont_split_sample_group;
|
|
enum show_feature_header show_feat_hdr;
|
|
};
|
|
|
|
void perf_tool__init(struct perf_tool *tool, bool ordered_events);
|
|
|
|
bool perf_tool__compressed_is_stub(const struct perf_tool *tool);
|
|
|
|
int process_event_sample_stub(const struct perf_tool *tool,
|
|
union perf_event *event,
|
|
struct perf_sample *sample,
|
|
struct evsel *evsel,
|
|
struct machine *machine);
|
|
|
|
#endif /* __PERF_TOOL_H */
|