diff options
author | Jiri Olsa <jolsa@kernel.org> | 2015-06-26 05:29:13 -0400 |
---|---|---|
committer | Arnaldo Carvalho de Melo <acme@redhat.com> | 2015-06-26 10:25:39 -0400 |
commit | 254ecbc7474dfa08155c5595e90cd4a0fa9d14ce (patch) | |
tree | 70f974974d9151b78ee9756fa343954a303ebffa /tools/perf | |
parent | 57b289159ab4fe1f7b2b531464cf67f65e48dd00 (diff) |
perf stat: Introduce perf_evlist__reset_stats
To fit in with the rest of the helpers (alloc and free).
Signed-off-by: Jiri Olsa <jolsa@kernel.org>
Cc: Adrian Hunter <adrian.hunter@intel.com>
Cc: Andi Kleen <ak@linux.intel.com>
Cc: David Ahern <dsahern@gmail.com>
Cc: Namhyung Kim <namhyung@kernel.org>
Cc: Peter Zijlstra <a.p.zijlstra@chello.nl>
Cc: Stephane Eranian <eranian@google.com>
Link: http://lkml.kernel.org/r/1435310967-14570-9-git-send-email-jolsa@kernel.org
Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
Diffstat (limited to 'tools/perf')
-rw-r--r-- | tools/perf/builtin-stat.c | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/tools/perf/builtin-stat.c b/tools/perf/builtin-stat.c index 983bcbbe8e0a..188cd98a4ab3 100644 --- a/tools/perf/builtin-stat.c +++ b/tools/perf/builtin-stat.c | |||
@@ -216,7 +216,7 @@ out_free: | |||
216 | return -1; | 216 | return -1; |
217 | } | 217 | } |
218 | 218 | ||
219 | static void perf_stat__reset_stats(struct perf_evlist *evlist) | 219 | static void perf_evlist__reset_stats(struct perf_evlist *evlist) |
220 | { | 220 | { |
221 | struct perf_evsel *evsel; | 221 | struct perf_evsel *evsel; |
222 | 222 | ||
@@ -224,7 +224,11 @@ static void perf_stat__reset_stats(struct perf_evlist *evlist) | |||
224 | perf_evsel__reset_stat_priv(evsel); | 224 | perf_evsel__reset_stat_priv(evsel); |
225 | perf_evsel__reset_counts(evsel); | 225 | perf_evsel__reset_counts(evsel); |
226 | } | 226 | } |
227 | } | ||
227 | 228 | ||
229 | static void perf_stat__reset_stats(void) | ||
230 | { | ||
231 | perf_evlist__reset_stats(evsel_list); | ||
228 | perf_stat__reset_shadow_stats(); | 232 | perf_stat__reset_shadow_stats(); |
229 | } | 233 | } |
230 | 234 | ||
@@ -1473,7 +1477,7 @@ int cmd_stat(int argc, const char **argv, const char *prefix __maybe_unused) | |||
1473 | status = run_perf_stat(argc, argv); | 1477 | status = run_perf_stat(argc, argv); |
1474 | if (forever && status != -1) { | 1478 | if (forever && status != -1) { |
1475 | print_stat(argc, argv); | 1479 | print_stat(argc, argv); |
1476 | perf_stat__reset_stats(evsel_list); | 1480 | perf_stat__reset_stats(); |
1477 | } | 1481 | } |
1478 | } | 1482 | } |
1479 | 1483 | ||