From: "Luis R. Rodriguez" <mcgrof@xxxxxxxxxxxxxxxx> As noted by Johannes this wasn't being initialized without this. Signed-off-by: Luis R. Rodriguez <mcgrof@xxxxxxxxxxxxxxxx> --- backport/compat/compat-3.3.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/backport/compat/compat-3.3.c b/backport/compat/compat-3.3.c index d86b40e..75bd5e5 100644 --- a/backport/compat/compat-3.3.c +++ b/backport/compat/compat-3.3.c @@ -174,7 +174,7 @@ out: EXPORT_SYMBOL_GPL(__pskb_copy); static DEFINE_SPINLOCK(wq_name_lock); -static struct list_head wq_name_list; +static LIST_HEAD(wq_name_list); struct wq_name { struct list_head list; @@ -204,7 +204,7 @@ backport_alloc_workqueue(const char *fmt, unsigned int flags, 0, #endif key, lock_name); -#else +#else wq = __alloc_workqueue_key(n->name, flags, max_active, key, lock_name); #endif if (!wq) { -- 1.7.10.4 -- To unsubscribe from this list: send the line "unsubscribe backports" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html