qemu-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Qemu-devel] [PULL 2/5] usb-host: reset and close libusb_device_handle b


From: Gerd Hoffmann
Subject: [Qemu-devel] [PULL 2/5] usb-host: reset and close libusb_device_handle before qemu exit
Date: Fri, 14 Dec 2018 11:38:51 +0100

From: linzhecheng <address@hidden>

we should perform these things as same as usb_host_close.

Signed-off-by: linzhecheng <address@hidden>
Message-id: address@hidden

[ kraxel: whitespace fixup ]

Signed-off-by: Gerd Hoffmann <address@hidden>
---
 hw/usb/host-libusb.c | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/hw/usb/host-libusb.c b/hw/usb/host-libusb.c
index b6602ded4e..833250a886 100644
--- a/hw/usb/host-libusb.c
+++ b/hw/usb/host-libusb.c
@@ -988,7 +988,9 @@ static void usb_host_exit_notifier(struct Notifier *n, void 
*data)
 
     if (s->dh) {
         usb_host_release_interfaces(s);
+        libusb_reset_device(s->dh);
         usb_host_attach_kernel(s);
+        libusb_close(s->dh);
     }
 }
 
-- 
2.9.3




reply via email to

[Prev in Thread] Current Thread [Next in Thread]