]> git.karo-electronics.de Git - linux-beck.git/commit
USB: EHCI: fix for leaking isochronous data
authorAlan Stern <stern@rowland.harvard.edu>
Wed, 30 Jan 2013 21:35:02 +0000 (16:35 -0500)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Thu, 31 Jan 2013 09:14:48 +0000 (10:14 +0100)
commitb09a61cc0bc2a7151f4ab652489e85253d5d0175
tree3bbb588669e38c1798c2e22cf5087dfc81a193b8
parent03eb466f276ceef9dcf023dc5474db02af68aad9
USB: EHCI: fix for leaking isochronous data

This patch (as1653) fixes a bug in ehci-hcd.  Unlike iTD entries, an
siTD entry in the periodic schedule may not complete until the frame
after the one it belongs to.  Consequently, when scanning the periodic
schedule it is necessary to start with the frame _preceding_ the one
where the previous scan ended.

Not doing this properly can result in memory leaks and failures to
complete isochronous URBs.

Signed-off-by: Alan Stern <stern@rowland.harvard.edu>
Reported-by: Andy Leiserson <andy@leiserson.org>
Cc: stable <stable@vger.kernel.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/usb/host/ehci-sched.c