]> git.kernelconcepts.de Git - karo-tx-linux.git/commitdiff
staging: usbip: Notify usb core of port status changes
authorMax Vozeler <mvz@vozeler.com>
Tue, 21 Sep 2010 15:31:40 +0000 (17:31 +0200)
committerGreg Kroah-Hartman <gregkh@suse.de>
Mon, 22 Nov 2010 18:47:29 +0000 (10:47 -0800)
commit 0c9a32f0192e656daa2ff3c9149f6d71b4a1b873 upstream.

This patch changes vhci to behave like dummy and
other hcds when disconnecting a device.

Previously detaching a device from the root hub
did not notify the usb core of the disconnect and
left the device visible.

Signed-off-by: Max Vozeler <mvz@vozeler.com>
Reported-by: Marco Lancione <marco@optikam.com>
Tested-by: Luc Jalbert <ljalbert@optikam.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
drivers/staging/usbip/vhci_hcd.c

index 6e91fc2bd850a2bf9c3e2f11f40fb935b93df873..c2018029059c5ce35b17a1965b443f586c1ceec7 100644 (file)
@@ -163,6 +163,8 @@ void rh_port_disconnect(int rhport)
         * spin_unlock(&vdev->ud.lock); */
 
        spin_unlock_irqrestore(&the_controller->lock, flags);
+
+       usb_hcd_poll_rh_status(vhci_to_hcd(the_controller));
 }