* [PATCH] perf: Provide support for filters in perf stat
@ 2011-03-14 15:40 Frederic Weisbecker
2011-03-14 19:17 ` Arnaldo Carvalho de Melo
2011-03-16 13:53 ` [tip:perf/urgent] perf stat: Provide support for filters tip-bot for Frederic Weisbecker
0 siblings, 2 replies; 3+ messages in thread
From: Frederic Weisbecker @ 2011-03-14 15:40 UTC (permalink / raw)
To: Arnaldo Carvalho de Melo
Cc: LKML, Frederic Weisbecker, Ingo Molnar, Peter Zijlstra,
Arnaldo Carvalho de Melo, Paul Mackerras, Stephane Eranian
Now the --filter option is usable with perf stat too.
Signed-off-by: Frederic Weisbecker <fweisbec@gmail.com>
Cc: Ingo Molnar <mingo@elte.hu>
Cc: Peter Zijlstra <a.p.zijlstra@chello.nl>
Cc: Arnaldo Carvalho de Melo <acme@redhat.com>
Cc: Paul Mackerras <paulus@samba.org>
Cc: Stephane Eranian <eranian@google.com>
---
tools/perf/builtin-stat.c | 8 ++++++++
1 files changed, 8 insertions(+), 0 deletions(-)
diff --git a/tools/perf/builtin-stat.c b/tools/perf/builtin-stat.c
index 21c0252..e2109f9 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)
}
}
+ if (perf_evlist__set_filters(evsel_list)) {
+ error("failed to set filter with %d (%s)\n", errno,
+ strerror(errno));
+ return -1;
+ }
+
/*
* Enable counters and exec the command:
*/
@@ -634,6 +640,8 @@ static const struct option options[] = {
OPT_CALLBACK('e', "event", &evsel_list, "event",
"event selector. use 'perf list' to list available events",
parse_events),
+ OPT_CALLBACK(0, "filter", &evsel_list, "filter",
+ "event filter", parse_filter),
OPT_BOOLEAN('i', "no-inherit", &no_inherit,
"child tasks do not inherit counters"),
OPT_INTEGER('p', "pid", &target_pid,
--
1.7.3.2
^ permalink raw reply related [flat|nested] 3+ messages in thread
* Re: [PATCH] perf: Provide support for filters in perf stat
2011-03-14 15:40 [PATCH] perf: Provide support for filters in perf stat Frederic Weisbecker
@ 2011-03-14 19:17 ` Arnaldo Carvalho de Melo
2011-03-16 13:53 ` [tip:perf/urgent] perf stat: Provide support for filters tip-bot for Frederic Weisbecker
1 sibling, 0 replies; 3+ messages in thread
From: Arnaldo Carvalho de Melo @ 2011-03-14 19:17 UTC (permalink / raw)
To: Frederic Weisbecker
Cc: LKML, Ingo Molnar, Peter Zijlstra, Paul Mackerras,
Stephane Eranian
Em Mon, Mar 14, 2011 at 04:40:30PM +0100, Frederic Weisbecker escreveu:
> Now the --filter option is usable with perf stat too.
Thanks, applied.
- Arnaldo
^ permalink raw reply [flat|nested] 3+ messages in thread
* [tip:perf/urgent] perf stat: Provide support for filters
2011-03-14 15:40 [PATCH] perf: Provide support for filters in perf stat Frederic Weisbecker
2011-03-14 19:17 ` Arnaldo Carvalho de Melo
@ 2011-03-16 13:53 ` tip-bot for Frederic Weisbecker
1 sibling, 0 replies; 3+ messages in thread
From: tip-bot for Frederic Weisbecker @ 2011-03-16 13:53 UTC (permalink / raw)
To: linux-tip-commits
Cc: acme, linux-kernel, eranian, paulus, hpa, mingo, a.p.zijlstra,
fweisbec, tglx, mingo
Commit-ID: cfd748ae066e776d45bdce550b47cd00c67d55de
Gitweb: http://git.kernel.org/tip/cfd748ae066e776d45bdce550b47cd00c67d55de
Author: Frederic Weisbecker <fweisbec@gmail.com>
AuthorDate: Mon, 14 Mar 2011 16:40:30 +0100
Committer: Arnaldo Carvalho de Melo <acme@redhat.com>
CommitDate: Mon, 14 Mar 2011 13:37:52 -0300
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>
---
tools/perf/builtin-stat.c | 8 ++++++++
1 files changed, 8 insertions(+), 0 deletions(-)
diff --git a/tools/perf/builtin-stat.c b/tools/perf/builtin-stat.c
index 21c0252..e2109f9 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)
}
}
+ if (perf_evlist__set_filters(evsel_list)) {
+ error("failed to set filter with %d (%s)\n", errno,
+ strerror(errno));
+ return -1;
+ }
+
/*
* Enable counters and exec the command:
*/
@@ -634,6 +640,8 @@ static const struct option options[] = {
OPT_CALLBACK('e', "event", &evsel_list, "event",
"event selector. use 'perf list' to list available events",
parse_events),
+ OPT_CALLBACK(0, "filter", &evsel_list, "filter",
+ "event filter", parse_filter),
OPT_BOOLEAN('i', "no-inherit", &no_inherit,
"child tasks do not inherit counters"),
OPT_INTEGER('p', "pid", &target_pid,
^ permalink raw reply related [flat|nested] 3+ messages in thread
end of thread, other threads:[~2011-03-16 13:54 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-03-14 15:40 [PATCH] perf: Provide support for filters in perf stat Frederic Weisbecker
2011-03-14 19:17 ` Arnaldo Carvalho de Melo
2011-03-16 13:53 ` [tip:perf/urgent] perf stat: Provide support for filters tip-bot for Frederic Weisbecker
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.