perf trace: Change syscall summary duration order
authorPekka Enberg <[email protected]>
Tue, 12 Nov 2013 14:10:10 +0000 (16:10 +0200)
committerArnaldo Carvalho de Melo <[email protected]>
Tue, 12 Nov 2013 16:00:38 +0000 (13:00 -0300)
Switch duration order to minimum, average, maximum for the '--summary'
command line option because it's more natural to read.

Signed-off-by: Pekka Enberg <[email protected]>
Acked-by: David Ahern <[email protected]>
Cc: David Ahern <[email protected]>
Cc: Ingo Molnar <[email protected]>
Link: http://lkml.kernel.org/r/[email protected]
Signed-off-by: Arnaldo Carvalho de Melo <[email protected]>
tools/perf/builtin-trace.c

index 8d6ea8fbf47670588f15396c1e6dde49a47105b6..8990fbeb8b41252fc1ecfedd42cedc41b65ef369 100644 (file)
@@ -2093,7 +2093,7 @@ static size_t trace__fprintf_threads_header(FILE *fp)
        printed  = fprintf(fp, "\n _____________________________________________________________________________\n");
        printed += fprintf(fp, " __)    Summary of events    (__\n\n");
        printed += fprintf(fp, "              [ task - pid ]     [ events ] [ ratio ]  [ runtime ]\n");
-       printed += fprintf(fp, "                                  syscall  count    min     max    avg  stddev\n");
+       printed += fprintf(fp, "                                  syscall  count    min     avg    max  stddev\n");
        printed += fprintf(fp, "                                                   msec    msec   msec     %%\n");
        printed += fprintf(fp, " _____________________________________________________________________________\n\n");
 
@@ -2129,8 +2129,8 @@ static size_t thread__dump_stats(struct thread_trace *ttrace,
                        sc = &trace->syscalls.table[inode->i];
                        printed += fprintf(fp, "%24s  %14s : ", "", sc->name);
                        printed += fprintf(fp, "%5" PRIu64 "  %8.3f  %8.3f",
-                                          n, min, max);
-                       printed += fprintf(fp, "  %8.3f  %6.2f\n", avg, pct);
+                                          n, min, avg);
+                       printed += fprintf(fp, "  %8.3f  %6.2f\n", max, pct);
                }
 
                inode = intlist__next(inode);