mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-04 08:13:54 -06:00
uhci: Properly unmap packets on cancel / invalid pid
Packets with an invalid pid, or which were cancelled have usb_packet_map() called on them on init, but not usb_packet_unmap() before being freed. Signed-off-by: Hans de Goede <hdegoede@redhat.com> Signed-off-by: Gerd Hoffmann <kraxel@redhat.com>
This commit is contained in:
parent
a8170e5e97
commit
00a0770de3
1 changed files with 2 additions and 0 deletions
|
@ -236,6 +236,7 @@ static void uhci_async_cancel(UHCIAsync *async)
|
||||||
trace_usb_uhci_packet_cancel(async->queue->token, async->td, async->done);
|
trace_usb_uhci_packet_cancel(async->queue->token, async->td, async->done);
|
||||||
if (!async->done)
|
if (!async->done)
|
||||||
usb_cancel_packet(&async->packet);
|
usb_cancel_packet(&async->packet);
|
||||||
|
usb_packet_unmap(&async->packet, &async->sgl);
|
||||||
uhci_async_free(async);
|
uhci_async_free(async);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -887,6 +888,7 @@ static int uhci_handle_td(UHCIState *s, uint32_t addr, UHCI_TD *td,
|
||||||
|
|
||||||
default:
|
default:
|
||||||
/* invalid pid : frame interrupted */
|
/* invalid pid : frame interrupted */
|
||||||
|
usb_packet_unmap(&async->packet, &async->sgl);
|
||||||
uhci_async_free(async);
|
uhci_async_free(async);
|
||||||
s->status |= UHCI_STS_HCPERR;
|
s->status |= UHCI_STS_HCPERR;
|
||||||
uhci_update_irq(s);
|
uhci_update_irq(s);
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue