From mboxrd@z Thu Jan 1 00:00:00 1970 From: Neil Turton Subject: [PATCH] Reduce length of accel_watch workqueue name Date: Mon, 17 Mar 2008 14:54:30 +0000 Message-ID: <47DE8626.2040501@solarflare.com> References: <20080314.172738.149717742.kuwa@jp.fujitsu.com> Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Return-path: In-Reply-To: List-Unsubscribe: , List-Post: List-Help: List-Subscribe: , Sender: xen-devel-bounces@lists.xensource.com Errors-To: xen-devel-bounces@lists.xensource.com To: xen-devel@lists.xensource.com Cc: KUWAMURA Shin'ya , Masaki Kanno , xen-ia64-devel@lists.xensource.com List-Id: xen-devel@lists.xenproject.org As reported reported (see link below) the first argument to create_workqueue is limited to 10 character on RHEL4U2. This patch shortens the length and makes the workqueue name a little more descriptive. http://lists.xensource.com/archives/html/xen-devel/2008-03/msg00417.html Signed-off-by: Neil Turton diff -r 3983b041fc51 drivers/xen/netfront/accel.c --- a/drivers/xen/netfront/accel.c Mon Mar 10 22:53:07 2008 +0000 +++ b/drivers/xen/netfront/accel.c Mon Mar 17 14:01:17 2008 +0000 @@ -71,7 +71,7 @@ void netif_init_accel(void) INIT_LIST_HEAD(&accelerators_list); spin_lock_init(&accelerators_lock); - accel_watch_workqueue = create_workqueue("accel_watch"); + accel_watch_workqueue = create_workqueue("net_accel"); } void netif_exit_accel(void)