diff options
-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) |