summaryrefslogtreecommitdiffstats
path: root/kernel
diff options
context:
space:
mode:
authorCarsten Emde <C.Emde@osadl.org>2011-10-26 23:14:16 +0200
committerIngo Molnar <mingo@elte.hu>2011-11-14 12:50:43 +0100
commitf1c6f1a7eed963ed233ba4c8b6fa8addb86c6ddc (patch)
tree06a00ecfe00ddadb282c88fb3408c158c08fd312 /kernel
parent4a6184ce7a48c478dee0d8a9ed74c1fa35161858 (diff)
downloadlinux-0-day-f1c6f1a7eed963ed233ba4c8b6fa8addb86c6ddc.tar.gz
linux-0-day-f1c6f1a7eed963ed233ba4c8b6fa8addb86c6ddc.tar.xz
sched: Set the command name of the idle tasks in SMP kernels
In UP systems, the idle task is initialized using the init_task structure from which the command name is taken (currently "swapper"). In SMP systems, one idle task per CPU is forked by the worker thread from which the task structure is copied. The command name is, therefore, "kworker/0:0" or "kworker/0:1", if not updated. Since such update was lacking, all idle tasks in SMP systems were incorrectly named. This longtime bug was not discovered immediately, because there is no /proc/0 entry - the bug only becomes apparent when tracing is enabled. This patch sets the command name of the idle tasks in SMP systems to the name that is used in the INIT_TASK structure suffixed by a slash and the number of the CPU. Signed-off-by: Carsten Emde <C.Emde@osadl.org> Signed-off-by: Peter Zijlstra <a.p.zijlstra@chello.nl> Link: http://lkml.kernel.org/r/20111026211708.768925506@osadl.org Signed-off-by: Ingo Molnar <mingo@elte.hu>
Diffstat (limited to 'kernel')
-rw-r--r--kernel/sched.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/kernel/sched.c b/kernel/sched.c
index 3d2c436959a17..d6b149ccf925c 100644
--- a/kernel/sched.c
+++ b/kernel/sched.c
@@ -71,6 +71,7 @@
#include <linux/ctype.h>
#include <linux/ftrace.h>
#include <linux/slab.h>
+#include <linux/init_task.h>
#include <asm/tlb.h>
#include <asm/irq_regs.h>
@@ -6112,6 +6113,9 @@ void __cpuinit init_idle(struct task_struct *idle, int cpu)
*/
idle->sched_class = &idle_sched_class;
ftrace_graph_init_idle_task(idle, cpu);
+#if defined(CONFIG_SMP)
+ sprintf(idle->comm, "%s/%d", INIT_TASK_COMM, cpu);
+#endif
}
/*