summaryrefslogtreecommitdiff
path: root/kernel/posix-cpu-timers.c
diff options
context:
space:
mode:
authorArnaldo Carvalho de Melo <acme@redhat.com>2009-07-03 13:30:00 (GMT)
committerScott Wood <scottwood@freescale.com>2014-04-10 00:19:08 (GMT)
commit17483359a394fa36cb0ccdb0ee4d0ac4528d935d (patch)
tree2b6ff20f5daca1d0463c78350cfa622a5ba608e6 /kernel/posix-cpu-timers.c
parent9bdfce64a9098cef4aad43746aa4602a7b6f0963 (diff)
downloadlinux-fsl-qoriq-17483359a394fa36cb0ccdb0ee4d0ac4528d935d.tar.xz
posix-timers: Shorten posix_cpu_timers/<CPU> kernel thread names
Shorten the softirq kernel thread names because they always overflow the limited comm length, appearing as "posix_cpu_timer" CPU# times. Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com> Signed-off-by: Ingo Molnar <mingo@elte.hu> Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Diffstat (limited to 'kernel/posix-cpu-timers.c')
-rw-r--r--kernel/posix-cpu-timers.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/kernel/posix-cpu-timers.c b/kernel/posix-cpu-timers.c
index 57ce5af..2d1963c 100644
--- a/kernel/posix-cpu-timers.c
+++ b/kernel/posix-cpu-timers.c
@@ -1374,7 +1374,7 @@ static int posix_cpu_thread_call(struct notifier_block *nfb,
switch (action) {
case CPU_UP_PREPARE:
p = kthread_create(posix_cpu_timers_thread, hcpu,
- "posix_cpu_timers/%d",cpu);
+ "posixcputmr/%d",cpu);
if (IS_ERR(p))
return NOTIFY_BAD;
p->flags |= PF_NOFREEZE;