Re: [Qemu-devel] [PATCH] net: eepro100: fix memory leak in device uninit

2016-10-19 Thread Jason Wang
On 2016年10月08日 20:07, Li Qiang wrote: From: Li Qiang The exit dispatch of eepro100 network card device doesn't free the 's->vmstate' field which was allocated in device realize thus leading a host memory leak. This patch avoid this. Signed-off-by: Li Qiang --- hw/net/eepro100.c | 1 + 1

Re: [Qemu-devel] [PATCH] net: eepro100: fix memory leak in device uninit

2016-10-09 Thread Li Qiang
Hello Stefan, I'm not familiar with the migration. In order not miss something, I think you can provide this patch. Thanks. 2016-10-09 0:43 GMT+08:00 Stefan Weil : > Am 08.10.2016 um 18:19 schrieb Stefan Weil: > >> Am 08.10.2016 um 14:07 schrieb Li Qiang: >> >>> From: Li Qiang >>> >>> The exit

Re: [Qemu-devel] [PATCH] net: eepro100: fix memory leak in device uninit

2016-10-08 Thread Stefan Weil
Am 08.10.2016 um 18:19 schrieb Stefan Weil: Am 08.10.2016 um 14:07 schrieb Li Qiang: From: Li Qiang The exit dispatch of eepro100 network card device doesn't free the 's->vmstate' field which was allocated in device realize thus leading a host memory leak. This patch avoid this. Signed-off-by

Re: [Qemu-devel] [PATCH] net: eepro100: fix memory leak in device uninit

2016-10-08 Thread Stefan Weil
Am 08.10.2016 um 14:07 schrieb Li Qiang: From: Li Qiang The exit dispatch of eepro100 network card device doesn't free the 's->vmstate' field which was allocated in device realize thus leading a host memory leak. This patch avoid this. Signed-off-by: Li Qiang Thank you for reporting this me

[Qemu-devel] [PATCH] net: eepro100: fix memory leak in device uninit

2016-10-08 Thread Li Qiang
From: Li Qiang The exit dispatch of eepro100 network card device doesn't free the 's->vmstate' field which was allocated in device realize thus leading a host memory leak. This patch avoid this. Signed-off-by: Li Qiang --- hw/net/eepro100.c | 1 + 1 file changed, 1 insertion(+) diff --git a/h