aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/usb/core/message.c
diff options
context:
space:
mode:
authorAlan Stern <stern@rowland.harvard.edu>2011-07-01 16:43:02 -0400
committerGreg Kroah-Hartman <gregkh@suse.de>2011-07-01 17:20:39 -0400
commite534c5b831c8b8e9f5edee5c8a37753c808b80dc (patch)
tree39e00c08e593edcbaeaa54a3288158a622be9e70 /drivers/usb/core/message.c
parent3140d5b2664309253ba465a14c89fe4f59c0359b (diff)
USB: fix regression occurring during device removal
This patch (as1476) fixes a regression introduced by fccf4e86200b8f5edd9a65da26f150e32ba79808 (USB: Free bandwidth when usb_disable_device is called). usb_disconnect() grabs the bandwidth_mutex before calling usb_disable_device(), which calls down indirectly to usb_set_interface(), which tries to acquire the bandwidth_mutex. The fix causes usb_set_interface() to return early when it is called for an interface that has already been unregistered, which is what happens in usb_disable_device(). Signed-off-by: Alan Stern <stern@rowland.harvard.edu> Tested-by: Sarah Sharp <sarah.a.sharp@linux.intel.com> Cc: stable <stable@kernel.org> Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
Diffstat (limited to 'drivers/usb/core/message.c')
-rw-r--r--drivers/usb/core/message.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/drivers/usb/core/message.c b/drivers/usb/core/message.c
index 64c7ab4702d..e0719b4ee18 100644
--- a/drivers/usb/core/message.c
+++ b/drivers/usb/core/message.c
@@ -1286,6 +1286,8 @@ int usb_set_interface(struct usb_device *dev, int interface, int alternate)
1286 interface); 1286 interface);
1287 return -EINVAL; 1287 return -EINVAL;
1288 } 1288 }
1289 if (iface->unregistering)
1290 return -ENODEV;
1289 1291
1290 alt = usb_altnum_to_altsetting(iface, alternate); 1292 alt = usb_altnum_to_altsetting(iface, alternate);
1291 if (!alt) { 1293 if (!alt) {