perf timechart: Always try to print at least 15 tasks
authorStanislav Fomichev <[email protected]>
Fri, 1 Nov 2013 16:25:45 +0000 (20:25 +0400)
committerArnaldo Carvalho de Melo <[email protected]>
Wed, 27 Nov 2013 17:58:36 +0000 (14:58 -0300)
Always try to print at least 15 tasks no matter how long they run.

Signed-off-by: Stanislav Fomichev <[email protected]>
Acked-by: Namhyung Kim <[email protected]>
Cc: Ingo Molnar <[email protected]>
Cc: Namhyung Kim <[email protected]>
Cc: Paul Mackerras <[email protected]>
Cc: Peter Zijlstra <[email protected]>
Link: http://lkml.kernel.org/r/[email protected]
Signed-off-by: Arnaldo Carvalho de Melo <[email protected]>
tools/perf/builtin-timechart.c

index 41c9bde2fb67f1418faceaaf86475a163694bdeb..bb21e57ff9bb2dcfb63d045be8284781de936097 100644 (file)
@@ -945,15 +945,17 @@ static void write_svg_file(const char *filename)
 {
        u64 i;
        int count;
+       int thresh = TIME_THRESH;
 
        numcpus++;
 
 
-       count = determine_display_tasks(TIME_THRESH);
-
-       /* We'd like to show at least 15 tasks; be less picky if we have fewer */
-       if (count < 15)
-               count = determine_display_tasks(TIME_THRESH / 10);
+       /* We'd like to show at least proc_num tasks;
+        * be less picky if we have fewer */
+       do {
+               count = determine_display_tasks(thresh);
+               thresh /= 10;
+       } while (!process_filter && thresh && count < 15);
 
        open_svg(filename, numcpus, count, first_time, last_time);