aboutsummaryrefslogtreecommitdiffstats
path: root/tools/perf/builtin-sched.c
diff options
context:
space:
mode:
authorIngo Molnar <mingo@elte.hu>2009-09-16 08:12:36 -0400
committerIngo Molnar <mingo@elte.hu>2009-09-16 06:15:47 -0400
commit80ed0987f363d7eb50193df3e6f6d71451f74bc3 (patch)
tree36ac94c42e234ade4c6a2ac4b8c2dcb3bfbd138f /tools/perf/builtin-sched.c
parentc8a37751043427c6e4397a2cbfd617cb5f215c72 (diff)
perf sched: Make idle thread and comm/pid names more consistent
Peter noticed that we have 3 ways of referring to the idle thread: [idle]:0 swapper:0 swapper-0 Standardize on 'swapper:0'. Reported-by: 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.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/perf/builtin-sched.c b/tools/perf/builtin-sched.c
index 2d542368de3c..da8f67483ae7 100644
--- a/tools/perf/builtin-sched.c
+++ b/tools/perf/builtin-sched.c
@@ -1204,13 +1204,13 @@ static void output_lat_thread(struct work_atoms *work_list)
1204 /* 1204 /*
1205 * Ignore idle threads: 1205 * Ignore idle threads:
1206 */ 1206 */
1207 if (!work_list->thread->pid) 1207 if (!strcmp(work_list->thread->comm, "swapper"))
1208 return; 1208 return;
1209 1209
1210 all_runtime += work_list->total_runtime; 1210 all_runtime += work_list->total_runtime;
1211 all_count += work_list->nb_atoms; 1211 all_count += work_list->nb_atoms;
1212 1212
1213 ret = printf(" %s-%d ", work_list->thread->comm, work_list->thread->pid); 1213 ret = printf(" %s:%d ", work_list->thread->comm, work_list->thread->pid);
1214 1214
1215 for (i = 0; i < 24 - ret; i++) 1215 for (i = 0; i < 24 - ret; i++)
1216 printf(" "); 1216 printf(" ");