aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRafael J. Wysocki2017-07-25 16:58:50 -0500
committerGreg Kroah-Hartman2017-08-16 15:40:29 -0500
commitdc978e9b65ab4c3b87ccefc52c454f29693ae135 (patch)
treeb9d95568d24ec613bb3c168bf57e2f0ce74db346
parent8b278516e5e36fd330ce8b88371e755decd19d3b (diff)
downloadkernel-omap-dc978e9b65ab4c3b87ccefc52c454f29693ae135.tar.gz
kernel-omap-dc978e9b65ab4c3b87ccefc52c454f29693ae135.tar.xz
kernel-omap-dc978e9b65ab4c3b87ccefc52c454f29693ae135.zip
USB: hcd: Mark secondary HCD as dead if the primary one died
commit cd5a6a4fdaba150089af2afc220eae0fef74878a upstream. Make usb_hc_died() clear the HCD_FLAG_RH_RUNNING flag for the shared HCD and set HCD_FLAG_DEAD for it, in analogy with what is done for the primary one. Among other thigs, this prevents check_root_hub_suspended() from returning -EBUSY for dead HCDs which helps to work around system suspend issues in some situations. This actually fixes occasional suspend failures on one of my test machines. Suggested-by: Alan Stern <stern@rowland.harvard.edu> Signed-off-by: Rafael J. Wysocki <rafael.j.wysocki@intel.com> Acked-by: Alan Stern <stern@rowland.harvard.edu> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
-rw-r--r--drivers/usb/core/hcd.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/drivers/usb/core/hcd.c b/drivers/usb/core/hcd.c
index b403596818db..12c123762b76 100644
--- a/drivers/usb/core/hcd.c
+++ b/drivers/usb/core/hcd.c
@@ -2448,6 +2448,8 @@ void usb_hc_died (struct usb_hcd *hcd)
2448 } 2448 }
2449 if (usb_hcd_is_primary_hcd(hcd) && hcd->shared_hcd) { 2449 if (usb_hcd_is_primary_hcd(hcd) && hcd->shared_hcd) {
2450 hcd = hcd->shared_hcd; 2450 hcd = hcd->shared_hcd;
2451 clear_bit(HCD_FLAG_RH_RUNNING, &hcd->flags);
2452 set_bit(HCD_FLAG_DEAD, &hcd->flags);
2451 if (hcd->rh_registered) { 2453 if (hcd->rh_registered) {
2452 clear_bit(HCD_FLAG_POLL_RH, &hcd->flags); 2454 clear_bit(HCD_FLAG_POLL_RH, &hcd->flags);
2453 2455