diff options
author | Jiri Olsa <jolsa@kernel.org> | 2015-07-21 14:31:23 +0200 |
---|---|---|
committer | Arnaldo Carvalho de Melo <acme@redhat.com> | 2015-08-06 21:02:39 +0200 |
commit | 711a572ea8ae7e9ab6575403c6d632d058d5cb3d (patch) | |
tree | c05c20bdcc5313d46048cb7338e1f3f412236518 /tools/perf/util/stat.h | |
parent | perf stat: Introduce struct perf_stat_config (diff) | |
download | linux-711a572ea8ae7e9ab6575403c6d632d058d5cb3d.tar.xz linux-711a572ea8ae7e9ab6575403c6d632d058d5cb3d.zip |
perf stat: Move 'scale' into struct perf_stat_config
Moving 'scale' into struct perf_stat_config. The point is to centralize
the base stat config so it could be used localy together with other stat
routines in other parts of perf code.
Signed-off-by: Jiri Olsa <jolsa@kernel.org>
Cc: David Ahern <dsahern@gmail.com>
Cc: Namhyung Kim <namhyung@kernel.org>
Cc: Peter Zijlstra <a.p.zijlstra@chello.nl>
Link: http://lkml.kernel.org/r/1437481927-29538-4-git-send-email-jolsa@kernel.org
Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
Diffstat (limited to 'tools/perf/util/stat.h')
-rw-r--r-- | tools/perf/util/stat.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/tools/perf/util/stat.h b/tools/perf/util/stat.h index 078bee49ccad..0a1d83faa7b9 100644 --- a/tools/perf/util/stat.h +++ b/tools/perf/util/stat.h @@ -52,6 +52,7 @@ struct perf_counts { struct perf_stat_config { enum aggr_mode aggr_mode; + bool scale; }; static inline struct perf_counts_values* |