usb: Always return 0 or -EBUSY to the runtime PM core.
authorSarah Sharp <sarah.a.sharp@linux.intel.com>
Thu, 30 Dec 2010 06:03:07 +0000 (22:03 -0800)
committerSarah Sharp <sarah.a.sharp@linux.intel.com>
Mon, 14 Mar 2011 01:07:07 +0000 (18:07 -0700)
The PM core reacts badly when the return code from usb_runtime_suspend()
is not 0, -EAGAIN, or -EBUSY.  The PM core regards this as a fatal error,
and refuses to run anymore PM helper functions.  In particular,
usbfs_open() and other usbfs functions will fail because the PM core will
return an error code when usb_autoresume_device() is called.  This causes
libusb and/or lsusb to either hang or segfault.

If a USB device cannot suspend for some reason (e.g. a hub doesn't report
it has remote wakeup capabilities), we still want lsusb and other
userspace programs to work.  So return -EBUSY, which will fill people's
log files with failed tries, but will ensure userspace still works.

Signed-off-by: Sarah Sharp <sarah.a.sharp@linux.intel.com>
drivers/usb/core/driver.c

index fca61720b8733140c805c36fd8b7398fd58fac12..38072e4e74bd66776e64ae6fdd9c1ad97dac3aae 100644 (file)
@@ -1659,6 +1659,11 @@ static int usb_runtime_suspend(struct device *dev)
                return -EAGAIN;
 
        status = usb_suspend_both(udev, PMSG_AUTO_SUSPEND);
+       /* The PM core reacts badly unless the return code is 0,
+        * -EAGAIN, or -EBUSY, so always return -EBUSY on an error.
+        */
+       if (status != 0)
+               return -EBUSY;
        return status;
 }