From: Arnaldo Carvalho de Melo Date: Sat, 12 Nov 2011 00:08:07 +0000 (-0200) Subject: perf ui progress: Fix divide by zero X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=18b552350515188a732db6ccdb81e9cefb8b58c9;p=linux-beck.git perf ui progress: Fix divide by zero Happens in a perf.data file where one of the events had no samples. Cc: David Ahern Cc: Frederic Weisbecker Cc: Mike Galbraith Cc: Paul Mackerras Cc: Peter Zijlstra Cc: Stephane Eranian Link: http://lkml.kernel.org/n/tip-j7st3oyiotvfxqde2nc41kxb@git.kernel.org Signed-off-by: Arnaldo Carvalho de Melo --- diff --git a/tools/perf/util/ui/progress.c b/tools/perf/util/ui/progress.c index 295e366b6311..13aa64e50e11 100644 --- a/tools/perf/util/ui/progress.c +++ b/tools/perf/util/ui/progress.c @@ -14,6 +14,9 @@ void ui_progress__update(u64 curr, u64 total, const char *title) if (use_browser <= 0) return; + if (total == 0) + return; + ui__refresh_dimensions(true); pthread_mutex_lock(&ui__lock); y = SLtt_Screen_Rows / 2 - 2;