]> git.proxmox.com Git - qemu.git/commitdiff
usb: async control xfer fixup
authorGerd Hoffmann <kraxel@redhat.com>
Thu, 9 Aug 2012 08:57:32 +0000 (10:57 +0200)
committerGerd Hoffmann <kraxel@redhat.com>
Thu, 16 Aug 2012 06:39:49 +0000 (08:39 +0200)
Need to clear p->result after copying setup data using usb_packet_copy()
because we'll reuse the USBPacket for the data transfer.

Signed-off-by: Gerd Hoffmann <kraxel@redhat.com>
hw/usb/core.c
hw/usb/host-linux.c

index 01a76228372dcb88205b90cf88a380c12d2151f2..c7e5bc047f7972e01585caf73db32d5723eef925 100644 (file)
@@ -107,6 +107,7 @@ static int do_token_setup(USBDevice *s, USBPacket *p)
     }
 
     usb_packet_copy(p, s->setup_buf, p->iov.size);
+    p->result = 0;
     s->setup_len   = (s->setup_buf[7] << 8) | s->setup_buf[6];
     s->setup_index = 0;
 
index d55be878ad4e360d8b55563425c471dfa978068b..8df92074d31b960f91557c09861d7183f3a2ca73 100644 (file)
@@ -1045,6 +1045,7 @@ static int usb_host_handle_control(USBDevice *dev, USBPacket *p,
 
     /* Note request is (bRequestType << 8) | bRequest */
     trace_usb_host_req_control(s->bus_num, s->addr, p, request, value, index);
+    assert(p->result == 0);
 
     switch (request) {
     case DeviceOutRequest | USB_REQ_SET_ADDRESS: