usb-ehci: always call ehci_queues_rip_unused for period queues
commit7bce354e148b0ae0ceae7582574810adc6fab4e4
authorHans de Goede <hdegoede@redhat.com>
Fri, 2 Mar 2012 20:27:11 +0000 (2 21:27 +0100)
committerGerd Hoffmann <kraxel@redhat.com>
Wed, 7 Mar 2012 11:28:03 +0000 (7 12:28 +0100)
tree17fc7830c0007cdc7c453fcd3b60c3e3955bdb70
parentdf5d5c5c9eeaedb7705b4df6f5ee8083f39cf7b5
usb-ehci: always call ehci_queues_rip_unused for period queues

Before this patch USB 2 devices with interrupt endpoints were not working
properly. The problem is that to avoid loops we stop processing as soon
as we encounter a queue-head (qh) we've already seen since qhs can be linked
in a circular fashion, this is tracked by the seen flag in our qh struct.

The resetting of the seen flag is done from ehci_queues_rip_unused which
before this patch was only called when executing the statemachine for the
async schedule.

But packets for interrupt endpoints are part of the periodic schedule! So what
would happen is that when there were no ctrl or bulk packets for a USB 2
device with an interrupt endpoint, the async schedule would become non
active, then ehci_queues_rip_unused would no longer get called and when
processing the qhs for the interrupt endpoints from the periodic schedule
their seen bit would still be 1 and they would be skipped.

Signed-off-by: Hans de Goede <hdegoede@redhat.com>
Signed-off-by: Gerd Hoffmann <kraxel@redhat.com>
hw/usb-ehci.c