aboutsummaryrefslogtreecommitdiffstats
path: root/tools/perf/util/header.c
diff options
context:
space:
mode:
authorNamhyung Kim <namhyung.kim@lge.com>2012-09-05 01:02:49 -0400
committerArnaldo Carvalho de Melo <acme@redhat.com>2012-09-05 16:47:11 -0400
commitbe4a2dedf6816871349fbddd018f266e93e3c22d (patch)
treec74dad2ca7afaebd643b36a3390b910b458cf53e /tools/perf/util/header.c
parent618a3f1d30ea0ee2ff3a88661b8d6a4035123211 (diff)
perf header: Swap pmu mapping numbers if needed
Like others, the numbers can be saved in a different endian format than a host machine. Swap them if needed. Signed-off-by: Namhyung Kim <namhyung@kernel.org> Cc: Ingo Molnar <mingo@kernel.org> Cc: Paul Mackerras <paulus@samba.org> Cc: Peter Zijlstra <a.p.zijlstra@chello.nl> Cc: Robert Richter <robert.richter@amd.com> Link: http://lkml.kernel.org/r/1346821373-31621-4-git-send-email-namhyung@kernel.org Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
Diffstat (limited to 'tools/perf/util/header.c')
-rw-r--r--tools/perf/util/header.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/tools/perf/util/header.c b/tools/perf/util/header.c
index 05c9310c3da1..43425b75f0c9 100644
--- a/tools/perf/util/header.c
+++ b/tools/perf/util/header.c
@@ -1440,6 +1440,9 @@ static void print_pmu_mappings(struct perf_header *ph, int fd, FILE *fp)
1440 if (ret != sizeof(pmu_num)) 1440 if (ret != sizeof(pmu_num))
1441 goto error; 1441 goto error;
1442 1442
1443 if (ph->needs_swap)
1444 pmu_num = bswap_32(pmu_num);
1445
1443 if (!pmu_num) { 1446 if (!pmu_num) {
1444 fprintf(fp, "# pmu mappings: not available\n"); 1447 fprintf(fp, "# pmu mappings: not available\n");
1445 return; 1448 return;
@@ -1448,6 +1451,9 @@ static void print_pmu_mappings(struct perf_header *ph, int fd, FILE *fp)
1448 while (pmu_num) { 1451 while (pmu_num) {
1449 if (read(fd, &type, sizeof(type)) != sizeof(type)) 1452 if (read(fd, &type, sizeof(type)) != sizeof(type))
1450 break; 1453 break;
1454 if (ph->needs_swap)
1455 type = bswap_32(type);
1456
1451 name = do_read_string(fd, ph); 1457 name = do_read_string(fd, ph);
1452 if (!name) 1458 if (!name)
1453 break; 1459 break;