9ae3a8
From 524882651970113d0b375a99362bd5b9e9b7f7a7 Mon Sep 17 00:00:00 2001
9ae3a8
From: Gerd Hoffmann <kraxel@redhat.com>
9ae3a8
Date: Fri, 11 Jul 2014 14:21:01 +0200
9ae3a8
Subject: [PATCH 27/43] xhci: child detach fix
9ae3a8
9ae3a8
Message-id: <1405088470-24115-29-git-send-email-kraxel@redhat.com>
9ae3a8
Patchwork-id: 59841
9ae3a8
O-Subject: [RHEL-7.1 qemu-kvm PATCH 28/37] xhci: child detach fix
9ae3a8
Bugzilla: 980833
9ae3a8
RH-Acked-by: Dr. David Alan Gilbert (git) <dgilbert@redhat.com>
9ae3a8
RH-Acked-by: Miroslav Rezanina <mrezanin@redhat.com>
9ae3a8
RH-Acked-by: Laszlo Ersek <lersek@redhat.com>
9ae3a8
9ae3a8
xhci_child_detach() zaps the wrong slot when unplugging a device
9ae3a8
connected via usb-hub:  Instead of the device's slot the slot of the
9ae3a8
usb-hub is used.  Fix it.
9ae3a8
9ae3a8
https://bugzilla.redhat.com/show_bug.cgi?id=1075846
9ae3a8
9ae3a8
Signed-off-by: Gerd Hoffmann <kraxel@redhat.com>
9ae3a8
Reviewed-by: Gonglei <arei.gonglei@huawei.com>
9ae3a8
(cherry picked from commit 463c534db516701ac732ac606c33c7101cf22e56)
9ae3a8
---
9ae3a8
 hw/usb/hcd-xhci.c | 2 +-
9ae3a8
 1 file changed, 1 insertion(+), 1 deletion(-)
9ae3a8
9ae3a8
Signed-off-by: Miroslav Rezanina <mrezanin@redhat.com>
9ae3a8
---
9ae3a8
 hw/usb/hcd-xhci.c | 2 +-
9ae3a8
 1 file changed, 1 insertion(+), 1 deletion(-)
9ae3a8
9ae3a8
diff --git a/hw/usb/hcd-xhci.c b/hw/usb/hcd-xhci.c
9ae3a8
index 2352b12..dc10ab0 100644
9ae3a8
--- a/hw/usb/hcd-xhci.c
9ae3a8
+++ b/hw/usb/hcd-xhci.c
9ae3a8
@@ -3438,7 +3438,7 @@ static void xhci_child_detach(USBPort *uport, USBDevice *child)
9ae3a8
     USBBus *bus = usb_bus_from_device(child);
9ae3a8
     XHCIState *xhci = container_of(bus, XHCIState, bus);
9ae3a8
 
9ae3a8
-    xhci_detach_slot(xhci, uport);
9ae3a8
+    xhci_detach_slot(xhci, child->port);
9ae3a8
 }
9ae3a8
 
9ae3a8
 static USBPortOps xhci_uport_ops = {
9ae3a8
-- 
9ae3a8
1.8.3.1
9ae3a8