This is a note to let you know that I've just added the patch titled xHCI: fix port U3 status check condition
to the 3.0-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: xhci-fix-port-u3-status-check-condition.patch and it can be found in the queue-3.0 subdirectory. If you, or anyone else, feels it should not be added to the stable tree, please let <sta...@kernel.org> know about it. >From 5ac04bf190e6f8b17238aef179ebd7f2bdfec919 Mon Sep 17 00:00:00 2001 From: Andiry Xu <andiry...@amd.com> Date: Wed, 3 Aug 2011 16:46:48 +0800 Subject: xHCI: fix port U3 status check condition From: Andiry Xu <andiry...@amd.com> commit 5ac04bf190e6f8b17238aef179ebd7f2bdfec919 upstream. Fix the port U3 status check when Clear PORT_SUSPEND Feature. The port status should be masked with PORT_PLS_MASK to check if it's in U3 state. This should be backported to kernels as old as 2.6.37. Signed-off-by: Andiry Xu <andiry...@amd.com> Signed-off-by: Sarah Sharp <sarah.a.sh...@linux.intel.com> Signed-off-by: Greg Kroah-Hartman <gre...@suse.de> --- drivers/usb/host/xhci-hub.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- a/drivers/usb/host/xhci-hub.c +++ b/drivers/usb/host/xhci-hub.c @@ -664,7 +664,7 @@ int xhci_hub_control(struct usb_hcd *hcd xhci_dbg(xhci, "PORTSC %04x\n", temp); if (temp & PORT_RESET) goto error; - if (temp & XDEV_U3) { + if ((temp & PORT_PLS_MASK) == XDEV_U3) { if ((temp & PORT_PE) == 0) goto error; Patches currently in stable-queue which might be from andiry...@amd.com are queue-3.0/xhci-fix-port-u3-status-check-condition.patch queue-3.0/xhci-fix-memory-leak-during-failed-enqueue.patch queue-3.0/xhci-remove-tds-from-td-lists-when-urbs-are-canceled.patch queue-3.0/xhci-fix-failed-enqueue-in-the-middle-of-isoch-td.patch queue-3.0/xhci-report-usb2-port-in-resuming-as-suspend.patch _______________________________________________ stable mailing list stable@linux.kernel.org http://linux.kernel.org/mailman/listinfo/stable