We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ea49e01 commit 5cac8eaCopy full SHA for 5cac8ea
tools/perf/util/evsel.h
@@ -179,11 +179,6 @@ struct evsel {
179
} side_band;
180
};
181
182
-union u64_swap {
183
- u64 val64;
184
- u32 val32[2];
185
-};
186
-
187
struct perf_missing_features {
188
bool sample_id_all;
189
bool exclude_guest;
tools/perf/util/memswap.h
@@ -2,6 +2,13 @@
2
#ifndef PERF_MEMSWAP_H_
3
#define PERF_MEMSWAP_H_
4
5
+#include <linux/types.h>
6
+
7
+union u64_swap {
8
+ u64 val64;
9
+ u32 val32[2];
10
+};
11
12
void mem_bswap_64(void *src, int byte_size);
13
void mem_bswap_32(void *src, int byte_size);
14
0 commit comments