search for: accelerators_li

Displaying 1 result from an estimated 1 matches for "accelerators_li".

Did you mean: accelerators_lis
2008 Feb 26
0
[PATCH] Fix request_module/modprobe deadlock in netfront accelerator
...own workqueue, and so modprobe can successfully flush the system-wide one. Signed-off-by Kieran Mansley <kmansley@solarflare.com> diff -r 1edfea26a2a9 drivers/xen/netfront/accel.c --- a/drivers/xen/netfront/accel.c +++ b/drivers/xen/netfront/accel.c @@ -60,6 +60,9 @@ static struct list_head accelerators_lis /* Lock to protect access to accelerators_list */ static spinlock_t accelerators_lock; +/* Workqueue to process acceleration configuration changes */ +struct workqueue_struct *accel_watch_workqueue; + /* Mutex to prevent concurrent loads and suspends, etc. */ DEFINE_MUTEX(accelerator_mutex);...