]> git.hungrycats.org Git - linux/commitdiff
[PATCH] USB: fix warning caused by autosuspend counter going negative
authorAlan Stern <stern@rowland.harvard.edu>
Fri, 20 Jul 2007 03:44:51 +0000 (20:44 -0700)
committerWilly Tarreau <w@1wt.eu>
Sat, 25 Aug 2007 15:24:02 +0000 (17:24 +0200)
This patch (as937) fixes a minor bug in the autosuspend usage-counting
code.  Each hub's usage counter keeps track of the number of
unsuspended children.  However the current driver increments the
counter after registering a new child, by which time the child may
already have been suspended and caused the counter to go negative.
The obvious solution is to increment the counter before registering
the child.

Signed-off-by: Alan Stern <stern@rowland.harvard.edu>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
Signed-off-by: Willy Tarreau <w@1wt.eu>
drivers/usb/core/hub.c

index 8ddeed37daec5eee041af354169d71ea2cb9bcf6..d5890d57862b4f79e23022d5e9605fdab02c7df7 100644 (file)
@@ -1356,6 +1356,10 @@ static int __usb_new_device(void *void_data)
        }
 #endif
 
+       /* Increment the parent's count of unsuspended children */
+       if (udev->parent)
+               usb_autoresume_device(udev->parent);
+
        /* Register the device.  The device driver is responsible
         * for adding the device files to usbfs and sysfs and for
         * configuring the device.
@@ -1363,13 +1367,11 @@ static int __usb_new_device(void *void_data)
        err = device_add (&udev->dev);
        if (err) {
                dev_err(&udev->dev, "can't device_add, error %d\n", err);
+               if (udev->parent)
+                       usb_autosuspend_device(udev->parent);
                goto fail;
        }
 
-       /* Increment the parent's count of unsuspended children */
-       if (udev->parent)
-               usb_autoresume_device(udev->parent);
-
 exit:
        module_put(THIS_MODULE);
        return err;