Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

perf ui tui progress: Don't force a refresh during progress update

Each call to tui_progress__update() would forcibly refresh the entire
screen. This is somewhat inefficient and causes noticable flickering
during the startup of perf-report, especially on large/slow terminals.

It looks like the force-refresh in tui_progress__update() serves no
purpose other than to clear the screen so that the progress bar of a
previous operation does not subsume that of a subsequent operation. But
we can do just that in a much more efficient manner by clearing only the
region that a previous progress bar may have occupied before repainting
the new progress bar. Then the force-refresh could be removed with no
change in visuals.

This patch disables the slow force-refresh in tui_progress__update() and
instead calls SLsmg_fill_region() on the entire area that the progress
bar may occupy before repainting it. This change makes the startup of
perf-report much faster and appear much "smoother".

It turns out that this was a big bottleneck in the startup speed of
perf-report -- with this patch, perf-report starts up ~2x faster (1.1s
vs 0.55s) on my machines. (These numbers were measured by running "time
perf report" on an 8MB perf.data and pressing 'q' immediately.)

Signed-off-by: Patrick Palka <patrick@parcs.ath.cx>
Acked-by: Ingo Molnar <mingo@kernel.org>
Cc: Ingo Molnar <mingo@kernel.org>
Cc: Namhyung Kim <namhyung@kernel.org>
Cc: Paul Mackerras <paulus@samba.org>
Cc: Peter Zijlstra <a.p.zijlstra@chello.nl>
Link: http://lkml.kernel.org/r/1382747149-9716-1-git-send-email-patrick@parcs.ath.cx
Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>

authored by

Patrick Palka and committed by
Arnaldo Carvalho de Melo
d53e57d0 caea6cf5

+2 -1
+2 -1
tools/perf/ui/tui/progress.c
··· 18 18 if (p->total == 0) 19 19 return; 20 20 21 - ui__refresh_dimensions(true); 21 + ui__refresh_dimensions(false); 22 22 pthread_mutex_lock(&ui__lock); 23 23 y = SLtt_Screen_Rows / 2 - 2; 24 24 SLsmg_set_color(0); 25 25 SLsmg_draw_box(y, 0, 3, SLtt_Screen_Cols); 26 26 SLsmg_gotorc(y++, 1); 27 27 SLsmg_write_string((char *)p->title); 28 + SLsmg_fill_region(y, 1, 1, SLtt_Screen_Cols - 2, ' '); 28 29 SLsmg_set_color(HE_COLORSET_SELECTED); 29 30 bar = ((SLtt_Screen_Cols - 2) * p->curr) / p->total; 30 31 SLsmg_fill_region(y, 1, 1, bar, ' ');