summaryrefslogtreecommitdiff
path: root/kernel
diff options
context:
space:
mode:
authorYong Zhang <yong.zhang0@gmail.com>2011-10-16 10:56:43 (GMT)
committerScott Wood <scottwood@freescale.com>2013-04-04 22:09:21 (GMT)
commit12e93eb728c6165cbd237ac9162e001a8c963f1e (patch)
treed2fbdeac7b15ed903433b58ab2b15564dc33c4cd /kernel
parentbae8dfcdc6b8673633a89be65f918627a6f2f6f5 (diff)
downloadlinux-fsl-qoriq-12e93eb728c6165cbd237ac9162e001a8c963f1e.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')
-rw-r--r--kernel/cpu.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/kernel/cpu.c b/kernel/cpu.c
index 05e0381..b06757c 100644
--- a/kernel/cpu.c
+++ b/kernel/cpu.c
@@ -143,7 +143,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);