]> git.baikalelectronics.ru Git - kernel.git/commit
usb: Check if port status is equal to RxDetect
authorGavin Guo <gavin.guo@canonical.com>
Thu, 17 Jul 2014 17:12:13 +0000 (01:12 +0800)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Fri, 18 Jul 2014 00:14:01 +0000 (17:14 -0700)
commit59aa45a62cea8c621e5648b663bca1334713f38d
treee060189ded706c0dfd10d5946fd758d76b71a5a9
parentd631f0500a82072f26afe9b4fbfed45d90832cb1
usb: Check if port status is equal to RxDetect

When using USB 3.0 pen drive with the [AMD] FCH USB XHCI Controller
[1022:7814], the second hotplugging will experience the USB 3.0 pen
drive is recognized as high-speed device. After bisecting the kernel,
I found the commit number c6f4c84922afe259734a8518fb155f3f2e7a3f0b
(USB: Allow USB 3.0 ports to be disabled.) causes the bug. After doing
some experiments, the bug can be fixed by avoiding executing the function
hub_usb3_port_disable(). Because the port status with [AMD] FCH USB
XHCI Controlleris [1022:7814] is already in RxDetect
(I tried printing out the port status before setting to Disabled state),
it's reasonable to check the port status before really executing
hub_usb3_port_disable().

Fixes: c6f4c84922af (USB: Allow USB 3.0 ports to be disabled.)
Signed-off-by: Gavin Guo <gavin.guo@canonical.com>
Acked-by: Alan Stern <stern@rowland.harvard.edu>
Cc: <stable@vger.kernel.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/usb/core/hub.c