aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAdrian Hunter <[email protected]>2013-08-08 14:32:21 +0300
committerArnaldo Carvalho de Melo <[email protected]>2013-08-12 10:31:09 -0300
commit36035f78ae1714a0762a2b38b64942d6dcb6471d (patch)
treea75734ffbd479bbeb44891e9e08f398cd18bac21
parent611a5ce8aa4cdb2daefbd9bed77ec3b3e9bd00ea (diff)
perf top: Set the machines symbol filter
Take into use the machines symbol filter member. Signed-off-by: Adrian Hunter <[email protected]> Cc: David Ahern <[email protected]> Cc: Frederic Weisbecker <[email protected]> Cc: Ingo Molnar <[email protected]> Cc: Jiri Olsa <[email protected]> Cc: Mike Galbraith <[email protected]> Cc: Namhyung Kim <[email protected]> Cc: Paul Mackerras <[email protected]> Cc: Peter Zijlstra <[email protected]> Cc: Stephane Eranian <[email protected]> Link: http://lkml.kernel.org/r/[email protected] Signed-off-by: Arnaldo Carvalho de Melo <[email protected]>
-rw-r--r--tools/perf/builtin-top.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/tools/perf/builtin-top.c b/tools/perf/builtin-top.c
index 440c3b371401..a63ade22cbc2 100644
--- a/tools/perf/builtin-top.c
+++ b/tools/perf/builtin-top.c
@@ -717,7 +717,7 @@ static void perf_event__process_sample(struct perf_tool *tool,
top->exact_samples++;
if (perf_event__preprocess_sample(event, machine, &al, sample,
- symbol_filter) < 0 ||
+ machine->symbol_filter) < 0 ||
al.filtered)
return;
@@ -938,6 +938,8 @@ static int __cmd_top(struct perf_top *top)
if (top->session == NULL)
return -ENOMEM;
+ machines__set_symbol_filter(&top->session->machines, symbol_filter);
+
if (!objdump_path) {
ret = perf_session_env__lookup_objdump(&top->session->header.env);
if (ret)