diff options
author | Gerd Hoffmann <kraxel@redhat.com> | 2016-01-19 12:44:44 +0100 |
---|---|---|
committer | Gerd Hoffmann <kraxel@redhat.com> | 2016-02-02 14:11:01 +0100 |
commit | 5a8660741a8aa19fbf8a5e8a2b3aac88664f4e66 (patch) | |
tree | 0130454477575b17706008130da7ad0e1f916395 /hw/usb | |
parent | 49d925ce50383a286278143c05511d30ec41a36e (diff) | |
download | qemu-5a8660741a8aa19fbf8a5e8a2b3aac88664f4e66.tar.gz qemu-5a8660741a8aa19fbf8a5e8a2b3aac88664f4e66.tar.bz2 qemu-5a8660741a8aa19fbf8a5e8a2b3aac88664f4e66.zip |
ehci: update irq on reset
After clearing the status register we also have to update the irq line
status. Otherwise a irq which happends to be pending at reset time
causes a interrupt storm. And the guest can't stop as the status
register doesn't indicate any pending interrupt.
Both NetBSD and FreeBSD hang on shutdown because of that.
Cc: qemu-stable@nongnu.org
Reported-by: Andrey Korolyov <andrey@xdel.ru>
Signed-off-by: Gerd Hoffmann <kraxel@redhat.com>
Message-id: 1453203884-4125-1-git-send-email-kraxel@redhat.com
Diffstat (limited to 'hw/usb')
-rw-r--r-- | hw/usb/hcd-ehci.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/hw/usb/hcd-ehci.c b/hw/usb/hcd-ehci.c index 93601d9627..1b50601fc1 100644 --- a/hw/usb/hcd-ehci.c +++ b/hw/usb/hcd-ehci.c @@ -866,6 +866,7 @@ void ehci_reset(void *opaque) s->usbsts = USBSTS_HALT; s->usbsts_pending = 0; s->usbsts_frindex = 0; + ehci_update_irq(s); s->astate = EST_INACTIVE; s->pstate = EST_INACTIVE; |