Re: [Qemu-devel] [PATCH] usb: ehci: fix memory leak in ehci_process_itd

2016-09-29 Thread Michael Tokarev
Applied to -trivial with comment fix, thanks! /mjt

Re: [Qemu-devel] [PATCH] usb: ehci: fix memory leak in ehci_process_itd

2016-09-26 Thread Thomas Huth
On 19.09.2016 04:48, Li Qiang wrote: > From: Li Qiang > > While processing isochronous transfer descriptors(iTD), if the page > select(PG) field value is out of bands it will return. In this > situation the ehci's sg list doesn't be freed thus leading a memory s/doesn't be/is not/ > leak issue.

Re: [Qemu-devel] [PATCH] usb: ehci: fix memory leak in ehci_process_itd

2016-09-25 Thread 李强
Ping! 2016-09-19 10:48 GMT+08:00 Li Qiang : > From: Li Qiang > > While processing isochronous transfer descriptors(iTD), if the page > select(PG) field value is out of bands it will return. In this > situation the ehci's sg list doesn't be freed thus leading a memory > leak issue. This patch avo

[Qemu-devel] [PATCH] usb: ehci: fix memory leak in ehci_process_itd

2016-09-18 Thread Li Qiang
From: Li Qiang While processing isochronous transfer descriptors(iTD), if the page select(PG) field value is out of bands it will return. In this situation the ehci's sg list doesn't be freed thus leading a memory leak issue. This patch avoid this. Signed-off-by: Li Qiang --- hw/usb/hcd-ehci.c