summaryrefslogtreecommitdiff
path: root/kernel/cpu.c
diff options
context:
space:
mode:
authorYong Zhang <yong.zhang0@gmail.com>2011-10-16 10:56:43 (GMT)
committerScott Wood <scottwood@freescale.com>2014-05-14 18:38:15 (GMT)
commit8834dd7564db27f47627bab23aaeb989a578c474 (patch)
tree94a55a6c571518f57d67d3dd5d97965998b4f218 /kernel/cpu.c
parente5d85d672ec063f0e9bb7e9a58ab5bc0db41f8d5 (diff)
downloadlinux-fsl-qoriq-8834dd7564db27f47627bab23aaeb989a578c474.tar.xz
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>
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 58e5322..7de9868 100644
--- a/kernel/cpu.c
+++ b/kernel/cpu.c
@@ -142,7 +142,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);