From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1760083AbYDDPnT (ORCPT ); Fri, 4 Apr 2008 11:43:19 -0400 Received: (majordomo@vger.kernel.org) by vger.kernel.org id S1752533AbYDDPnI (ORCPT ); Fri, 4 Apr 2008 11:43:08 -0400 Received: from pentafluge.infradead.org ([213.146.154.40]:41871 "EHLO pentafluge.infradead.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1757467AbYDDPnH (ORCPT ); Fri, 4 Apr 2008 11:43:07 -0400 Subject: [PATCH -rt] shorten softirq kernel thread names From: Peter Zijlstra To: Steven Rostedt , Clark Williams Cc: linux-rt-users , linux-kernel Content-Type: text/plain Date: Fri, 04 Apr 2008 17:42:53 +0200 Message-Id: <1207323773.15579.4.camel@twins> Mime-Version: 1.0 X-Mailer: Evolution 2.22.0 Content-Transfer-Encoding: 7bit Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Subject: -rt: shorten softirq kernel thread names Shorten the softirq kernel thread names because they often overflow the limited comm length. Signed-off-by: Peter Zijlstra --- diff --git a/kernel/softirq.c b/kernel/softirq.c index a9e1b08..385ed5b 100644 --- a/kernel/softirq.c +++ b/kernel/softirq.c @@ -923,7 +923,7 @@ static int __cpuinit cpu_callback(struct notifier_block *nfb, for (i = 0; i < MAX_SOFTIRQ; i++) { p = kthread_create(ksoftirqd, &per_cpu(ksoftirqd, hotcpu)[i], - "softirq-%s/%d", softirq_names[i], + "sirq-%s/%d", softirq_names[i], hotcpu); if (IS_ERR(p)) { printk("ksoftirqd %d for %i failed\n", i,