aboutsummaryrefslogtreecommitdiffstats
path: root/tools/perf/builtin-top.c
diff options
context:
space:
mode:
Diffstat (limited to 'tools/perf/builtin-top.c')
-rw-r--r--tools/perf/builtin-top.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/perf/builtin-top.c b/tools/perf/builtin-top.c
index 31ea7a68baa..70f1075cc5b 100644
--- a/tools/perf/builtin-top.c
+++ b/tools/perf/builtin-top.c
@@ -676,7 +676,7 @@ static int symbol_filter(struct map *map, struct symbol *sym)
676 676
677 for (i = 0; skip_symbols[i]; i++) { 677 for (i = 0; skip_symbols[i]; i++) {
678 if (!strcmp(skip_symbols[i], name)) { 678 if (!strcmp(skip_symbols[i], name)) {
679 syme->skip = 1; 679 sym->ignore = true;
680 break; 680 break;
681 } 681 }
682 } 682 }
@@ -779,7 +779,7 @@ static void perf_event__process_sample(const union perf_event *event,
779 } 779 }
780 780
781 syme = symbol__priv(al.sym); 781 syme = symbol__priv(al.sym);
782 if (!syme->skip) { 782 if (!al.sym->ignore) {
783 struct perf_evsel *evsel; 783 struct perf_evsel *evsel;
784 784
785 evsel = perf_evlist__id2evsel(top.evlist, sample->id); 785 evsel = perf_evlist__id2evsel(top.evlist, sample->id);