]> git.karo-electronics.de Git - karo-tx-linux.git/commitdiff
usbnet: smsc95xx: don't recover device if suspend fails in system sleep
authorMing Lei <ming.lei@canonical.com>
Fri, 15 Mar 2013 04:08:58 +0000 (12:08 +0800)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Mon, 25 Mar 2013 17:55:46 +0000 (10:55 -0700)
If suspend callback fails in system sleep context, usb core will
ignore the failure and let system sleep go ahead further, so
this patch doesn't recover device under this situation.

Also add comments on the case.

Acked-by: David S. Miller <davem@davemloft.net>
Cc: Steve Glendinning <steve.glendinning@shawell.net>
Signed-off-by: Ming Lei <ming.lei@canonical.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/net/usb/smsc95xx.c

index e6d2dea1373ce29fcd5275c2d84547c561ba20d0..3f38ba868f6182152093e8efad0a864439c5cef0 100644 (file)
@@ -1660,7 +1660,11 @@ static int smsc95xx_suspend(struct usb_interface *intf, pm_message_t message)
        ret = smsc95xx_enter_suspend0(dev);
 
 done:
-       if (ret)
+       /*
+        * TODO: resume() might need to handle the suspend failure
+        * in system sleep
+        */
+       if (ret && PMSG_IS_AUTO(message))
                usbnet_resume(intf);
        return ret;
 }