diff options
author | Arnaldo Carvalho de Melo <[email protected]> | 2019-10-09 11:22:43 -0300 |
---|---|---|
committer | Arnaldo Carvalho de Melo <[email protected]> | 2019-10-09 11:23:52 -0300 |
commit | 8d6505bae391e640aaefd182907e7c1d673af17e (patch) | |
tree | 9556a2c5e4af80004d09b3da52ce0e0e76af67be | |
parent | 444e2ff34df8f631cd83ae73bb56ef13cfb84b34 (diff) |
perf beauty: Make strarray's offset be u64
We need it for things like MSRs that are sparse and go over MAXINT.
Cc: Adrian Hunter <[email protected]>
Cc: Jiri Olsa <[email protected]>
Cc: Luis Cláudio Gonçalves <[email protected]>
Cc: Namhyung Kim <[email protected]>
Link: https://lkml.kernel.org/n/[email protected]
Signed-off-by: Arnaldo Carvalho de Melo <[email protected]>
-rw-r--r-- | tools/perf/trace/beauty/beauty.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/perf/trace/beauty/beauty.h b/tools/perf/trace/beauty/beauty.h index 4cc4f6b3d4a1..5ad7542b428b 100644 --- a/tools/perf/trace/beauty/beauty.h +++ b/tools/perf/trace/beauty/beauty.h @@ -7,7 +7,7 @@ #include <sys/types.h> struct strarray { - int offset; + u64 offset; int nr_entries; const char *prefix; const char **entries; |