aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--tools/perf/util/evsel.c10
-rw-r--r--tools/perf/util/types.h5
2 files changed, 7 insertions, 8 deletions
diff --git a/tools/perf/util/evsel.c b/tools/perf/util/evsel.c
index 9abd8ac508e2..57e4ce57bbcc 100644
--- a/tools/perf/util/evsel.c
+++ b/tools/perf/util/evsel.c
@@ -462,10 +462,7 @@ int perf_event__parse_sample(const union perf_event *event, u64 type,
462 * used for cross-endian analysis. See git commit 65014ab3 462 * used for cross-endian analysis. See git commit 65014ab3
463 * for why this goofiness is needed. 463 * for why this goofiness is needed.
464 */ 464 */
465 union { 465 union u64_swap u;
466 u64 val64;
467 u32 val32[2];
468 } u;
469 466
470 memset(data, 0, sizeof(*data)); 467 memset(data, 0, sizeof(*data));
471 data->cpu = data->pid = data->tid = -1; 468 data->cpu = data->pid = data->tid = -1;
@@ -608,10 +605,7 @@ int perf_event__synthesize_sample(union perf_event *event, u64 type,
608 * used for cross-endian analysis. See git commit 65014ab3 605 * used for cross-endian analysis. See git commit 65014ab3
609 * for why this goofiness is needed. 606 * for why this goofiness is needed.
610 */ 607 */
611 union { 608 union u64_swap u;
612 u64 val64;
613 u32 val32[2];
614 } u;
615 609
616 array = event->sample.array; 610 array = event->sample.array;
617 611
diff --git a/tools/perf/util/types.h b/tools/perf/util/types.h
index 5f3689a3d085..c51fa6b70a28 100644
--- a/tools/perf/util/types.h
+++ b/tools/perf/util/types.h
@@ -16,4 +16,9 @@ typedef signed short s16;
16typedef unsigned char u8; 16typedef unsigned char u8;
17typedef signed char s8; 17typedef signed char s8;
18 18
19union u64_swap {
20 u64 val64;
21 u32 val32[2];
22};
23
19#endif /* __PERF_TYPES_H */ 24#endif /* __PERF_TYPES_H */