Re: [PATCH 2/2] perf tools: Add missing swap for ino_generation

From: Namhyung Kim
Date: Mon Nov 02 2020 - 08:51:25 EST


On Mon, Nov 2, 2020 at 8:31 AM Jiri Olsa <jolsa@xxxxxxxxxx> wrote:
>
> We are missing swap for ino_generation field.
>
> Fixes: 5c5e854bc760 ("perf tools: Add attr->mmap2 support")
> Signed-off-by: Jiri Olsa <jolsa@xxxxxxxxxx>

Acked-by: Namhyung Kim <namhyung@xxxxxxxxxx>

Thanks
Namhyung


> ---
> tools/perf/util/session.c | 1 +
> 1 file changed, 1 insertion(+)
>
> 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;
> --
> 2.26.2
>