diff options
Diffstat (limited to 'tools/perf/builtin-top.c')
-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 45014ef11059..1e8e92e317b9 100644 --- a/tools/perf/builtin-top.c +++ b/tools/perf/builtin-top.c | |||
@@ -983,6 +983,7 @@ static void event__process_sample(const event_t *self, | |||
983 | u64 ip = self->ip.ip; | 983 | u64 ip = self->ip.ip; |
984 | struct sym_entry *syme; | 984 | struct sym_entry *syme; |
985 | struct addr_location al; | 985 | struct addr_location al; |
986 | struct sample_data data; | ||
986 | struct machine *machine; | 987 | struct machine *machine; |
987 | u8 origin = self->header.misc & PERF_RECORD_MISC_CPUMODE_MASK; | 988 | u8 origin = self->header.misc & PERF_RECORD_MISC_CPUMODE_MASK; |
988 | 989 | ||
@@ -1025,7 +1026,8 @@ static void event__process_sample(const event_t *self, | |||
1025 | if (self->header.misc & PERF_RECORD_MISC_EXACT_IP) | 1026 | if (self->header.misc & PERF_RECORD_MISC_EXACT_IP) |
1026 | exact_samples++; | 1027 | exact_samples++; |
1027 | 1028 | ||
1028 | if (event__preprocess_sample(self, session, &al, symbol_filter) < 0 || | 1029 | if (event__preprocess_sample(self, session, &al, &data, |
1030 | symbol_filter) < 0 || | ||
1029 | al.filtered) | 1031 | al.filtered) |
1030 | return; | 1032 | return; |
1031 | 1033 | ||