diff options
author | Adrian Hunter <adrian.hunter@intel.com> | 2013-08-08 07:32:21 -0400 |
---|---|---|
committer | Arnaldo Carvalho de Melo <acme@redhat.com> | 2013-08-12 09:31:09 -0400 |
commit | 36035f78ae1714a0762a2b38b64942d6dcb6471d (patch) | |
tree | a75734ffbd479bbeb44891e9e08f398cd18bac21 | |
parent | 611a5ce8aa4cdb2daefbd9bed77ec3b3e9bd00ea (diff) |
perf top: Set the machines symbol filter
Take into use the machines symbol filter member.
Signed-off-by: Adrian Hunter <adrian.hunter@intel.com>
Cc: David Ahern <dsahern@gmail.com>
Cc: Frederic Weisbecker <fweisbec@gmail.com>
Cc: Ingo Molnar <mingo@kernel.org>
Cc: Jiri Olsa <jolsa@redhat.com>
Cc: Mike Galbraith <efault@gmx.de>
Cc: Namhyung Kim <namhyung@gmail.com>
Cc: Paul Mackerras <paulus@samba.org>
Cc: Peter Zijlstra <peterz@infradead.org>
Cc: Stephane Eranian <eranian@google.com>
Link: http://lkml.kernel.org/r/1375961547-30267-3-git-send-email-adrian.hunter@intel.com
Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
-rw-r--r-- | tools/perf/builtin-top.c | 4 |
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, | |||
717 | top->exact_samples++; | 717 | top->exact_samples++; |
718 | 718 | ||
719 | if (perf_event__preprocess_sample(event, machine, &al, sample, | 719 | if (perf_event__preprocess_sample(event, machine, &al, sample, |
720 | symbol_filter) < 0 || | 720 | machine->symbol_filter) < 0 || |
721 | al.filtered) | 721 | al.filtered) |
722 | return; | 722 | return; |
723 | 723 | ||
@@ -938,6 +938,8 @@ static int __cmd_top(struct perf_top *top) | |||
938 | if (top->session == NULL) | 938 | if (top->session == NULL) |
939 | return -ENOMEM; | 939 | return -ENOMEM; |
940 | 940 | ||
941 | machines__set_symbol_filter(&top->session->machines, symbol_filter); | ||
942 | |||
941 | if (!objdump_path) { | 943 | if (!objdump_path) { |
942 | ret = perf_session_env__lookup_objdump(&top->session->header.env); | 944 | ret = perf_session_env__lookup_objdump(&top->session->header.env); |
943 | if (ret) | 945 | if (ret) |