diff options
author | Ingo Molnar <mingo@elte.hu> | 2009-09-12 04:08:34 -0400 |
---|---|---|
committer | Ingo Molnar <mingo@elte.hu> | 2009-09-13 04:22:44 -0400 |
commit | d9340c1db3f52460a8335eeb127a2728c5bba6ce (patch) | |
tree | 375564ebf46acdcf73e8b0a056ebae23109565a7 /tools/perf/builtin-sched.c | |
parent | 46f392c97f9fd772426ed3361c5179a0d44b8c3f (diff) |
perf sched: Display time in milliseconds, reorganize output
After:
-----------------------------------------------------------------------------------
Task | runtime ms | switches | average delay ms | maximum delay ms |
-----------------------------------------------------------------------------------
migration/0 | 0.000 ms | 1 | avg: 0.047 ms | max: 0.047 ms |
ksoftirqd/0 | 0.000 ms | 1 | avg: 0.039 ms | max: 0.039 ms |
migration/1 | 0.000 ms | 3 | avg: 0.013 ms | max: 0.016 ms |
migration/3 | 0.000 ms | 2 | avg: 0.003 ms | max: 0.004 ms |
migration/4 | 0.000 ms | 1 | avg: 0.022 ms | max: 0.022 ms |
distccd | 0.000 ms | 1 | avg: 0.004 ms | max: 0.004 ms |
distccd | 0.000 ms | 1 | avg: 0.014 ms | max: 0.014 ms |
distccd | 0.000 ms | 2 | avg: 0.000 ms | max: 0.000 ms |
distccd | 0.000 ms | 2 | avg: 0.012 ms | max: 0.019 ms |
distccd | 0.000 ms | 1 | avg: 0.002 ms | max: 0.002 ms |
as | 0.000 ms | 2 | avg: 0.019 ms | max: 0.019 ms |
as | 0.000 ms | 3 | avg: 0.015 ms | max: 0.017 ms |
as | 0.000 ms | 1 | avg: 0.009 ms | max: 0.009 ms |
perf | 0.000 ms | 1 | avg: 0.001 ms | max: 0.001 ms |
gcc | 0.000 ms | 1 | avg: 0.021 ms | max: 0.021 ms |
run-mozilla.sh | 0.000 ms | 2 | avg: 0.010 ms | max: 0.017 ms |
mozilla-plugin- | 0.000 ms | 1 | avg: 0.006 ms | max: 0.006 ms |
gcc | 0.000 ms | 2 | avg: 0.013 ms | max: 0.013 ms |
-----------------------------------------------------------------------------------
(The runtime ms column is not filled in yet.)
Cc: Peter Zijlstra <a.p.zijlstra@chello.nl>
Cc: Mike Galbraith <efault@gmx.de>
Cc: Paul Mackerras <paulus@samba.org>
Cc: Arnaldo Carvalho de Melo <acme@redhat.com>
Cc: Frederic Weisbecker <fweisbec@gmail.com>
LKML-Reference: <new-submission>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
Diffstat (limited to 'tools/perf/builtin-sched.c')
-rw-r--r-- | tools/perf/builtin-sched.c | 17 |
1 files changed, 9 insertions, 8 deletions
diff --git a/tools/perf/builtin-sched.c b/tools/perf/builtin-sched.c index 84699cf036ab..a084c284e198 100644 --- a/tools/perf/builtin-sched.c +++ b/tools/perf/builtin-sched.c | |||
@@ -1096,14 +1096,15 @@ static void output_lat_thread(struct thread_latency *lat) | |||
1096 | if (!count) | 1096 | if (!count) |
1097 | return; | 1097 | return; |
1098 | 1098 | ||
1099 | ret = printf("%s", lat->thread->comm); | 1099 | ret = printf(" %s ", lat->thread->comm); |
1100 | 1100 | ||
1101 | for (i = 0; i < 25 - ret; i++) | 1101 | for (i = 0; i < 19 - ret; i++) |
1102 | printf(" "); | 1102 | printf(" "); |
1103 | 1103 | ||
1104 | avg = total / count; | 1104 | avg = total / count; |
1105 | 1105 | ||
1106 | printf("%5d %10llu %10llu %10llu\n", count, total, avg, max); | 1106 | printf("|%9.3f ms |%9d | avg:%9.3f ms | max:%9.3f ms |\n", |
1107 | 0.0, count, (double)avg/1e9, (double)max/1e9); | ||
1107 | } | 1108 | } |
1108 | 1109 | ||
1109 | static void __cmd_lat(void) | 1110 | static void __cmd_lat(void) |
@@ -1113,11 +1114,9 @@ static void __cmd_lat(void) | |||
1113 | setup_pager(); | 1114 | setup_pager(); |
1114 | read_events(); | 1115 | read_events(); |
1115 | 1116 | ||
1116 | printf(" Tasks"); | 1117 | printf("-----------------------------------------------------------------------------------\n"); |
1117 | printf(" count"); | 1118 | printf(" Task | runtime ms | switches | average delay ms | maximum delay ms |\n"); |
1118 | printf(" total"); | 1119 | printf("-----------------------------------------------------------------------------------\n"); |
1119 | printf(" avg"); | ||
1120 | printf(" max\n\n"); | ||
1121 | 1120 | ||
1122 | next = rb_first(&lat_snapshot_root); | 1121 | next = rb_first(&lat_snapshot_root); |
1123 | 1122 | ||
@@ -1128,6 +1127,8 @@ static void __cmd_lat(void) | |||
1128 | output_lat_thread(lat); | 1127 | output_lat_thread(lat); |
1129 | next = rb_next(next); | 1128 | next = rb_next(next); |
1130 | } | 1129 | } |
1130 | |||
1131 | printf("-----------------------------------------------------------------------------------\n"); | ||
1131 | } | 1132 | } |
1132 | 1133 | ||
1133 | static struct trace_sched_handler *trace_handler; | 1134 | static struct trace_sched_handler *trace_handler; |