9ae3a8
From 13b8b9eda753aa5bc1758627f9148e4fff91f90f Mon Sep 17 00:00:00 2001
9ae3a8
From: Gerd Hoffmann <kraxel@redhat.com>
9ae3a8
Date: Wed, 6 Nov 2013 12:17:00 +0100
9ae3a8
Subject: [PATCH 65/81] usb-host-libusb: Detach kernel drivers earlier
9ae3a8
9ae3a8
RH-Author: Gerd Hoffmann <kraxel@redhat.com>
9ae3a8
Message-id: <1383740220-2049-4-git-send-email-kraxel@redhat.com>
9ae3a8
Patchwork-id: 55515
9ae3a8
O-Subject: [RHEL-7 qemu-kvm PATCH 3/3] usb-host-libusb: Detach kernel drivers earlier
9ae3a8
Bugzilla: 980383
9ae3a8
RH-Acked-by: Paolo Bonzini <pbonzini@redhat.com>
9ae3a8
RH-Acked-by: Bandan Das <bsd@redhat.com>
9ae3a8
RH-Acked-by: Alex Williamson <alex.williamson@redhat.com>
9ae3a8
9ae3a8
From: Hans de Goede <hdegoede@redhat.com>
9ae3a8
9ae3a8
If we detach the kernel drivers on the first set_config, then they will
9ae3a8
be still attached when the device gets its initial reset. Causing the drivers
9ae3a8
to re-initialize the device after the reset, dirtying the device state.
9ae3a8
9ae3a8
Signed-off-by: Hans de Goede <hdegoede@redhat.com>
9ae3a8
Signed-off-by: Gerd Hoffmann <kraxel@redhat.com>
9ae3a8
(cherry picked from commit f34d5c750897abb3853910ce73f63d88d74dc827)
9ae3a8
---
9ae3a8
 hw/usb/host-libusb.c | 7 +++++--
9ae3a8
 1 file changed, 5 insertions(+), 2 deletions(-)
9ae3a8
9ae3a8
Signed-off-by: Miroslav Rezanina <mrezanin@redhat.com>
9ae3a8
---
9ae3a8
 hw/usb/host-libusb.c |    7 +++++--
9ae3a8
 1 files changed, 5 insertions(+), 2 deletions(-)
9ae3a8
9ae3a8
diff --git a/hw/usb/host-libusb.c b/hw/usb/host-libusb.c
9ae3a8
index 9b226e4..8510902 100644
9ae3a8
--- a/hw/usb/host-libusb.c
9ae3a8
+++ b/hw/usb/host-libusb.c
9ae3a8
@@ -137,6 +137,7 @@ static QTAILQ_HEAD(, USBHostDevice) hostdevs =
9ae3a8
 static void usb_host_auto_check(void *unused);
9ae3a8
 static void usb_host_release_interfaces(USBHostDevice *s);
9ae3a8
 static void usb_host_nodev(USBHostDevice *s);
9ae3a8
+static void usb_host_detach_kernel(USBHostDevice *s);
9ae3a8
 static void usb_host_attach_kernel(USBHostDevice *s);
9ae3a8
 
9ae3a8
 /* ------------------------------------------------------------------------ */
9ae3a8
@@ -787,10 +788,13 @@ static int usb_host_open(USBHostDevice *s, libusb_device *dev)
9ae3a8
         goto fail;
9ae3a8
     }
9ae3a8
 
9ae3a8
-    libusb_get_device_descriptor(dev, &s->ddesc);
9ae3a8
     s->dev     = dev;
9ae3a8
     s->bus_num = bus_num;
9ae3a8
     s->addr    = addr;
9ae3a8
+
9ae3a8
+    usb_host_detach_kernel(s);
9ae3a8
+
9ae3a8
+    libusb_get_device_descriptor(dev, &s->ddesc);
9ae3a8
     usb_host_get_port(s->dev, s->port, sizeof(s->port));
9ae3a8
 
9ae3a8
     usb_ep_init(udev);
9ae3a8
@@ -1051,7 +1055,6 @@ static void usb_host_set_config(USBHostDevice *s, int config, USBPacket *p)
9ae3a8
     trace_usb_host_set_config(s->bus_num, s->addr, config);
9ae3a8
 
9ae3a8
     usb_host_release_interfaces(s);
9ae3a8
-    usb_host_detach_kernel(s);
9ae3a8
     rc = libusb_set_configuration(s->dh, config);
9ae3a8
     if (rc != 0) {
9ae3a8
         usb_host_libusb_error("libusb_set_configuration", rc);
9ae3a8
-- 
9ae3a8
1.7.1
9ae3a8