summaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
authorArnaldo Carvalho de Melo <acme@redhat.com>2025-03-12 17:31:36 -0300
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2025-04-10 14:44:33 +0200
commit67f9b6b5ce0037ffdf71388cb867b485a8eab17e (patch)
tree18587a21bd2da52e255de102e9a6e5014cce808a /tools
parent7fb60dcd9984b53ab34b1796d2d478875b321330 (diff)
downloadlinux-67f9b6b5ce0037ffdf71388cb867b485a8eab17e.tar.gz
linux-67f9b6b5ce0037ffdf71388cb867b485a8eab17e.tar.bz2
linux-67f9b6b5ce0037ffdf71388cb867b485a8eab17e.zip
perf python: Fixup description of sample.id event member
[ Upstream commit 1376c195e8ad327bb9f2d32e0acc5ac39e7cb30a ] 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> Signed-off-by: Sasha Levin <sashal@kernel.org>
Diffstat (limited to 'tools')
-rw-r--r--tools/perf/util/python.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/perf/util/python.c b/tools/perf/util/python.c
index b4bc57859f73..ae6bcd39a200 100644
--- a/tools/perf/util/python.c
+++ b/tools/perf/util/python.c
@@ -47,7 +47,7 @@ struct pyrf_event {
};
#define sample_members \
- sample_member_def(sample_ip, ip, T_ULONGLONG, "event type"), \
+ sample_member_def(sample_ip, ip, T_ULONGLONG, "event ip"), \
sample_member_def(sample_pid, pid, T_INT, "event pid"), \
sample_member_def(sample_tid, tid, T_INT, "event tid"), \
sample_member_def(sample_time, time, T_ULONGLONG, "event timestamp"), \