aboutsummaryrefslogtreecommitdiffstats
path: root/tools/perf
diff options
context:
space:
mode:
authorJiri Olsa <jolsa@kernel.org>2020-11-02 00:31:03 +0100
committerArnaldo Carvalho de Melo <acme@redhat.com>2020-11-03 09:15:02 -0300
commitfe01adb72356a4e2f8735e4128af85921ca98fa1 (patch)
tree144f584138921a30fb0c8e64de0ef8f2a65392ce /tools/perf
parentperf tools: Initialize output buffer in build_id__sprintf (diff)
downloadlinux-dev-fe01adb72356a4e2f8735e4128af85921ca98fa1.tar.xz
linux-dev-fe01adb72356a4e2f8735e4128af85921ca98fa1.zip
perf tools: Add missing swap for ino_generation
We are missing swap for ino_generation field. Fixes: 5c5e854bc760 ("perf tools: Add attr->mmap2 support") Signed-off-by: Jiri Olsa <jolsa@kernel.org> Acked-by: Namhyung Kim <namhyung@kernel.org> Link: https://lore.kernel.org/r/20201101233103.3537427-2-jolsa@kernel.org Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
Diffstat (limited to 'tools/perf')
-rw-r--r--tools/perf/util/session.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/tools/perf/util/session.c b/tools/perf/util/session.c
index 7a5f03764702..d20b16ee7377 100644
--- a/tools/perf/util/session.c
+++ b/tools/perf/util/session.c
@@ -595,6 +595,7 @@ static void perf_event__mmap2_swap(union perf_event *event,
event->mmap2.maj = bswap_32(event->mmap2.maj);
event->mmap2.min = bswap_32(event->mmap2.min);
event->mmap2.ino = bswap_64(event->mmap2.ino);
+ event->mmap2.ino_generation = bswap_64(event->mmap2.ino_generation);
if (sample_id_all) {
void *data = &event->mmap2.filename;