[Qemu-devel] [PATCH v3 0/2] fix leaks in bdrv_open_driver()

Manos Pitsidianakis posted 2 patches 6 years, 8 months ago
Patches applied successfully (tree, apply log)
git fetch https://github.com/patchew-project/qemu tags/patchew/20170714143548.32559-1-el13635@mail.ntua.gr
Test FreeBSD passed
Test checkpatch passed
Test docker passed
Test s390x passed
block.c | 26 ++++++++++++++------------
1 file changed, 14 insertions(+), 12 deletions(-)
[Qemu-devel] [PATCH v3 0/2] fix leaks in bdrv_open_driver()
Posted by Manos Pitsidianakis 6 years, 8 months ago
v3:
 new commit: block: fix dangling bs->explicit_options in block.c
 rework error paths in bdrv_open_driver()
v2:
 move bdrv_unref_child(bs, bs->file) to bdrv_open_driver
 do not set bs->drv to NULL if open succeeds

Manos Pitsidianakis (2):
  block: fix dangling bs->explicit_options in block.c
  block: fix leaks in bdrv_open_driver()

 block.c | 26 ++++++++++++++------------
 1 file changed, 14 insertions(+), 12 deletions(-)

-- 
2.11.0


Re: [Qemu-devel] [PATCH v3 0/2] fix leaks in bdrv_open_driver()
Posted by Kevin Wolf 6 years, 8 months ago
Am 14.07.2017 um 16:35 hat Manos Pitsidianakis geschrieben:
> v3:
>  new commit: block: fix dangling bs->explicit_options in block.c
>  rework error paths in bdrv_open_driver()
> v2:
>  move bdrv_unref_child(bs, bs->file) to bdrv_open_driver
>  do not set bs->drv to NULL if open succeeds

Thanks, applied to the block branch.

Kevin