diff options
author | Gerd Hoffmann <kraxel@redhat.com> | 2012-03-08 13:37:52 +0100 |
---|---|---|
committer | Gerd Hoffmann <kraxel@redhat.com> | 2012-03-13 10:15:32 +0100 |
commit | d9a528db7f2d71d92e869e20bda37774f11fbbe1 (patch) | |
tree | abe47a5f6d8b8a934fe2c5ee82346b796b80c16a /hw | |
parent | 60f8afcb5d734b6e8a6ba6cb26254dc04e8d9f8d (diff) | |
download | hqemu-d9a528db7f2d71d92e869e20bda37774f11fbbe1.zip hqemu-d9a528db7f2d71d92e869e20bda37774f11fbbe1.tar.gz |
uhci: cancel on schedule stop.
Cancel any in-flight transaction when the guest stops the uhci schedule.
Signed-off-by: Gerd Hoffmann <kraxel@redhat.com>
Diffstat (limited to 'hw')
-rw-r--r-- | hw/usb/hcd-uhci.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/hw/usb/hcd-uhci.c b/hw/usb/hcd-uhci.c index 416f703..5177e33 100644 --- a/hw/usb/hcd-uhci.c +++ b/hw/usb/hcd-uhci.c @@ -1126,6 +1126,7 @@ static void uhci_frame_timer(void *opaque) if (!(s->cmd & UHCI_CMD_RS)) { /* Full stop */ qemu_del_timer(s->frame_timer); + uhci_async_cancel_all(s); /* set hchalted bit in status - UHCI11D 2.1.2 */ s->status |= UHCI_STS_HCHALTED; |