|
|
|
|
|
|
|
|
|
|
xen-devel
[Xen-devel] [PATCH] Reduce length of accel_watch workqueue name
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 <nturton@xxxxxxxxxxxxxx>
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)
_______________________________________________
Xen-devel mailing list
Xen-devel@xxxxxxxxxxxxxxxxxxx
http://lists.xensource.com/xen-devel
|
|
|
|
|