aboutsummaryrefslogtreecommitdiffstats
path: root/tools/perf/builtin-stat.c
diff options
context:
space:
mode:
authorFrederic Weisbecker <fweisbec@gmail.com>2011-03-14 11:40:30 -0400
committerArnaldo Carvalho de Melo <acme@redhat.com>2011-03-14 12:37:52 -0400
commitcfd748ae066e776d45bdce550b47cd00c67d55de (patch)
treef19fd744f82bb6ca29005bf63bd0681bd389653d /tools/perf/builtin-stat.c
parent171b3be9c42e97cd4530706654242f6a3efb6ac3 (diff)
perf stat: Provide support for filters
Now the --filter option is usable with perf stat too. Cc: Ingo Molnar <mingo@elte.hu> Cc: Paul Mackerras <paulus@samba.org> Cc: Peter Zijlstra <a.p.zijlstra@chello.nl> Cc: Stephane Eranian <eranian@google.com> LKML-Reference: <1300117230-8404-1-git-send-email-fweisbec@gmail.com> Signed-off-by: Frederic Weisbecker <fweisbec@gmail.com> Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
Diffstat (limited to 'tools/perf/builtin-stat.c')
-rw-r--r--tools/perf/builtin-stat.c8
1 files changed, 8 insertions, 0 deletions
diff --git a/tools/perf/builtin-stat.c b/tools/perf/builtin-stat.c
index 21c025222496..e2109f9b43eb 100644
--- a/tools/perf/builtin-stat.c
+++ b/tools/perf/builtin-stat.c
@@ -333,6 +333,12 @@ static int run_perf_stat(int argc __used, const char **argv)
333 } 333 }
334 } 334 }
335 335
336 if (perf_evlist__set_filters(evsel_list)) {
337 error("failed to set filter with %d (%s)\n", errno,
338 strerror(errno));
339 return -1;
340 }
341
336 /* 342 /*
337 * Enable counters and exec the command: 343 * Enable counters and exec the command:
338 */ 344 */
@@ -634,6 +640,8 @@ static const struct option options[] = {
634 OPT_CALLBACK('e', "event", &evsel_list, "event", 640 OPT_CALLBACK('e', "event", &evsel_list, "event",
635 "event selector. use 'perf list' to list available events", 641 "event selector. use 'perf list' to list available events",
636 parse_events), 642 parse_events),
643 OPT_CALLBACK(0, "filter", &evsel_list, "filter",
644 "event filter", parse_filter),
637 OPT_BOOLEAN('i', "no-inherit", &no_inherit, 645 OPT_BOOLEAN('i', "no-inherit", &no_inherit,
638 "child tasks do not inherit counters"), 646 "child tasks do not inherit counters"),
639 OPT_INTEGER('p', "pid", &target_pid, 647 OPT_INTEGER('p', "pid", &target_pid,