diff options
author | Jiri Olsa <jolsa@kernel.org> | 2015-12-03 04:06:43 -0500 |
---|---|---|
committer | Arnaldo Carvalho de Melo <acme@redhat.com> | 2015-12-07 16:12:58 -0500 |
commit | ab46db0a3325a064bb24e826b12995d157565efb (patch) | |
tree | af5c27e7913a0d101e2cf8c9281daef9e9367e80 | |
parent | 3e27c92081131738fa4d7dd71673aa6e8c24866d (diff) |
perf stat: Use perf_evlist__enable in handle_initial_delay
No need to mimic the behaviour of perf_evlist__enable, we can use it
directly.
Signed-off-by: Jiri Olsa <jolsa@kernel.org>
Tested-by: Arnaldo Carvalho de Melo <acme@redhat.com>
Cc: Adrian Hunter <adrian.hunter@intel.com>
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/1449133606-14429-5-git-send-email-jolsa@kernel.org
Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
-rw-r--r-- | tools/perf/builtin-stat.c | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/tools/perf/builtin-stat.c b/tools/perf/builtin-stat.c index 813c52ad9303..8ca40deaa728 100644 --- a/tools/perf/builtin-stat.c +++ b/tools/perf/builtin-stat.c | |||
@@ -253,12 +253,9 @@ static void process_interval(void) | |||
253 | 253 | ||
254 | static void handle_initial_delay(void) | 254 | static void handle_initial_delay(void) |
255 | { | 255 | { |
256 | struct perf_evsel *counter; | ||
257 | |||
258 | if (initial_delay) { | 256 | if (initial_delay) { |
259 | usleep(initial_delay * 1000); | 257 | usleep(initial_delay * 1000); |
260 | evlist__for_each(evsel_list, counter) | 258 | perf_evlist__enable(evsel_list); |
261 | perf_evsel__enable(counter); | ||
262 | } | 259 | } |
263 | } | 260 | } |
264 | 261 | ||