Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

perf python: Fixup description of sample.id event member

Some old cut'n'paste error, its "ip", so the description should be
"event ip", not "event type".

Fixes: 877108e42b1b9ba6 ("perf tools: Initial python binding")
Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
Reviewed-by: Ian Rogers <irogers@google.com>
Link: https://lore.kernel.org/r/20250312203141.285263-2-acme@kernel.org
Signed-off-by: Namhyung Kim <namhyung@kernel.org>

authored by

Arnaldo Carvalho de Melo and committed by
Namhyung Kim
1376c195 ca218209

+1 -1
+1 -1
tools/perf/util/python.c
··· 49 49 }; 50 50 51 51 #define sample_members \ 52 - sample_member_def(sample_ip, ip, T_ULONGLONG, "event type"), \ 52 + sample_member_def(sample_ip, ip, T_ULONGLONG, "event ip"), \ 53 53 sample_member_def(sample_pid, pid, T_INT, "event pid"), \ 54 54 sample_member_def(sample_tid, tid, T_INT, "event tid"), \ 55 55 sample_member_def(sample_time, time, T_ULONGLONG, "event timestamp"), \