This is a note to let you know that I've just added the patch titled
usb: dwc3: gadget: add missing spin_lock()
to the 3.19-stable tree which can be found at:
http://www.kernel.org/git/?p=linux/kernel/git/stable/stable-queue.git;a=summary
The filename of the patch is:
usb-dwc3-gadget-add-missing-spin_lock.patch
and it can be found in the queue-3.19 subdirectory.
If you, or anyone else, feels it should not be added to the stable tree,
please let <[email protected]> know about it.
>From 5c7b3b02de766a8634708953e805399e3544a290 Mon Sep 17 00:00:00 2001
From: Felipe Balbi <[email protected]>
Date: Thu, 29 Jan 2015 10:29:18 -0600
Subject: usb: dwc3: gadget: add missing spin_lock()
From: Felipe Balbi <[email protected]>
commit 5c7b3b02de766a8634708953e805399e3544a290 upstream.
commit 8e74475b0e0a (usb: dwc3: gadget: use udc-core's
reset notifier) added support for the new UDC core's
reset notifier to dwc3 but while at it, it removed
a spin_lock() from dwc3_reset_gadget() which might
cause an unbalanced spin_unlock() further down the line
Fixes: 8e74475b0e0a (usb: dwc3: gadget: use udc-core's reset notifier)
Signed-off-by: Felipe Balbi <[email protected]>
Signed-off-by: Greg Kroah-Hartman <[email protected]>
---
drivers/usb/dwc3/gadget.c | 1 +
1 file changed, 1 insertion(+)
--- a/drivers/usb/dwc3/gadget.c
+++ b/drivers/usb/dwc3/gadget.c
@@ -2043,6 +2043,7 @@ static void dwc3_resume_gadget(struct dw
if (dwc->gadget_driver && dwc->gadget_driver->resume) {
spin_unlock(&dwc->lock);
dwc->gadget_driver->resume(&dwc->gadget);
+ spin_lock(&dwc->lock);
}
}
Patches currently in stable-queue which might be from [email protected] are
queue-3.19/usb-dwc3-gadget-add-missing-spin_lock.patch
queue-3.19/arm-dts-am335x-bone-usb0-is-hardwired-for-peripheral.patch
queue-3.19/usb-musb-add-omap-control-dependency.patch
queue-3.19/arm-dra7-hwmod-fix-boot-crash-with-debug_ll-enabled-on-uart3.patch
--
To unsubscribe from this list: send the line "unsubscribe stable" in
the body of a message to [email protected]
More majordomo info at http://vger.kernel.org/majordomo-info.html