summaryrefslogtreecommitdiff
path: root/kernel/cpu.c
diff options
context:
space:
mode:
authorYong Zhang <yong.zhang0@gmail.com>2011-10-16 18:56:43 +0800
committerSteven Rostedt <rostedt@goodmis.org>2015-06-18 18:16:20 -0400
commit5a106e8b6b006c79774527025a084a29e83766cb (patch)
tree50ad266a32354f72e0be4d66198cb2c946a89806 /kernel/cpu.c
parent1b91a5f6beef94bb02dbe3e5716c1d9aebf11579 (diff)
downloadlinux-rt-5a106e8b6b006c79774527025a084a29e83766cb.tar.gz
hotplug: sync_unplug: No "
" in task name Otherwise the output will look a little odd. Signed-off-by: Yong Zhang <yong.zhang0@gmail.com> Link: http://lkml.kernel.org/r/1318762607-2261-2-git-send-email-yong.zhang0@gmail.com Signed-off-by: Thomas Gleixner <tglx@linutronix.de> Signed-off-by: Steven Rostedt <rostedt@goodmis.org>
Diffstat (limited to 'kernel/cpu.c')
-rw-r--r--kernel/cpu.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/kernel/cpu.c b/kernel/cpu.c
index 127a53f7e45d..dc3ccb47e776 100644
--- a/kernel/cpu.c
+++ b/kernel/cpu.c
@@ -165,7 +165,7 @@ static int cpu_unplug_begin(unsigned int cpu)
struct task_struct *tsk;
init_completion(&hp->synced);
- tsk = kthread_create(sync_unplug_thread, hp, "sync_unplug/%d\n", cpu);
+ tsk = kthread_create(sync_unplug_thread, hp, "sync_unplug/%d", cpu);
if (IS_ERR(tsk))
return (PTR_ERR(tsk));
kthread_bind(tsk, cpu);