mirror of
https://gitlab.com/qemu-project/qemu
synced 2024-11-05 20:35:44 +00:00
usb-ehci: Fix an assert whenever isoc transfers are used
hcd-ehci.c is missing an usb_packet_init() call for the ipacket UsbPacket it uses for isoc transfers, triggering an assert (taking the entire vm down) in usb_packet_setup as soon as any isoc transfers are done by a high speed USB device. Signed-off-by: Hans de Goede <hdegoede@redhat.com> Signed-off-by: Gerd Hoffmann <kraxel@redhat.com>
This commit is contained in:
parent
9bc3a3a216
commit
7341ea075c
1 changed files with 1 additions and 0 deletions
|
@ -2581,6 +2581,7 @@ static int usb_ehci_initfn(PCIDevice *dev)
|
||||||
s->async_bh = qemu_bh_new(ehci_async_bh, s);
|
s->async_bh = qemu_bh_new(ehci_async_bh, s);
|
||||||
QTAILQ_INIT(&s->aqueues);
|
QTAILQ_INIT(&s->aqueues);
|
||||||
QTAILQ_INIT(&s->pqueues);
|
QTAILQ_INIT(&s->pqueues);
|
||||||
|
usb_packet_init(&s->ipacket);
|
||||||
|
|
||||||
qemu_register_reset(ehci_reset, s);
|
qemu_register_reset(ehci_reset, s);
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue