diff options
Diffstat (limited to 'tools/perf/builtin-top.c')
-rw-r--r-- | tools/perf/builtin-top.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/tools/perf/builtin-top.c b/tools/perf/builtin-top.c index 31d497368cc..42a7d96b4db 100644 --- a/tools/perf/builtin-top.c +++ b/tools/perf/builtin-top.c | |||
@@ -826,7 +826,7 @@ static void perf_session__mmap_read_idx(struct perf_session *self, int idx) | |||
826 | perf_event__process_sample(event, evsel, &sample, machine); | 826 | perf_event__process_sample(event, evsel, &sample, machine); |
827 | else if (event->header.type < PERF_RECORD_MAX) { | 827 | else if (event->header.type < PERF_RECORD_MAX) { |
828 | hists__inc_nr_events(&evsel->hists, event->header.type); | 828 | hists__inc_nr_events(&evsel->hists, event->header.type); |
829 | perf_event__process(&top.ops, event, &sample, machine); | 829 | perf_event__process(&top.tool, event, &sample, machine); |
830 | } else | 830 | } else |
831 | ++self->hists.stats.nr_unknown_events; | 831 | ++self->hists.stats.nr_unknown_events; |
832 | } | 832 | } |
@@ -968,11 +968,11 @@ static int __cmd_top(void) | |||
968 | goto out_delete; | 968 | goto out_delete; |
969 | 969 | ||
970 | if (top.target_tid != -1) | 970 | if (top.target_tid != -1) |
971 | perf_event__synthesize_thread_map(&top.ops, top.evlist->threads, | 971 | perf_event__synthesize_thread_map(&top.tool, top.evlist->threads, |
972 | perf_event__process, | 972 | perf_event__process, |
973 | &top.session->host_machine); | 973 | &top.session->host_machine); |
974 | else | 974 | else |
975 | perf_event__synthesize_threads(&top.ops, perf_event__process, | 975 | perf_event__synthesize_threads(&top.tool, perf_event__process, |
976 | &top.session->host_machine); | 976 | &top.session->host_machine); |
977 | start_counters(top.evlist); | 977 | start_counters(top.evlist); |
978 | top.session->evlist = top.evlist; | 978 | top.session->evlist = top.evlist; |