aboutsummaryrefslogtreecommitdiffstats
path: root/tools/perf
diff options
context:
space:
mode:
Diffstat (limited to 'tools/perf')
-rw-r--r--tools/perf/util/ui/browsers/hists.c7
1 files changed, 7 insertions, 0 deletions
diff --git a/tools/perf/util/ui/browsers/hists.c b/tools/perf/util/ui/browsers/hists.c
index ef6ccefad432..e64d9527f14e 100644
--- a/tools/perf/util/ui/browsers/hists.c
+++ b/tools/perf/util/ui/browsers/hists.c
@@ -332,6 +332,13 @@ static int hist_browser__run(struct hist_browser *self, const char *ev_name,
332 case -1: 332 case -1:
333 /* FIXME we need to check if it was es.reason == NEWT_EXIT_TIMER */ 333 /* FIXME we need to check if it was es.reason == NEWT_EXIT_TIMER */
334 timer(arg); 334 timer(arg);
335 /*
336 * The timer may have changed the number of entries.
337 * XXX: Find better way to keep this in synch, probably
338 * removing this timer function altogether and just sync
339 * using the hists->lock...
340 */
341 self->b.nr_entries = self->hists->nr_entries;
335 hists__browser_title(self->hists, title, sizeof(title), 342 hists__browser_title(self->hists, title, sizeof(title),
336 ev_name, self->dso_filter, 343 ev_name, self->dso_filter,
337 self->thread_filter); 344 self->thread_filter);