Re: [Qemu-devel] [PATCH 0/3] ide: ahci: fix memory leak in device unit

2017-03-14 Thread John Snow
On 03/13/2017 10:41 PM, Li Qiang wrote: > Hello John, > > Does this patch go to upstream? > > Thanks. > Yes, it will be included for 2.9. I usually send my PRs on Friday, but I was out of town so it got delayed. It qualifies as a bugfix though, so it can still go in. --js > 2017-03-04 6:48

Re: [Qemu-devel] [PATCH 0/3] ide: ahci: fix memory leak in device unit

2017-03-13 Thread Li Qiang
Hello John, Does this patch go to upstream? Thanks. 2017-03-04 6:48 GMT+08:00 John Snow : > > > On 03/02/2017 05:08 AM, Li Qiang wrote: > > As the pci ahci can be hotplug and unplug, in the ahci unrealize > > function it should free all the resource once allocated in the > >

Re: [Qemu-devel] [PATCH 0/3] ide: ahci: fix memory leak in device unit

2017-03-03 Thread John Snow
On 03/02/2017 05:08 AM, Li Qiang wrote: > As the pci ahci can be hotplug and unplug, in the ahci unrealize > function it should free all the resource once allocated in the > realized function. This patchset first add cleanup function in > core layer and then call it in the ahci unit. > > Li

[Qemu-devel] [PATCH 0/3] ide: ahci: fix memory leak in device unit

2017-03-02 Thread Li Qiang
As the pci ahci can be hotplug and unplug, in the ahci unrealize function it should free all the resource once allocated in the realized function. This patchset first add cleanup function in core layer and then call it in the ahci unit. Li Qiang (3): ide: qdev: register ide bus unrealize