[Qemu-devel] [PATCH 0/3] qcow2: Fix cluster leaks on write error

Kevin Wolf posted 3 patches 7 years, 4 months ago
Failed in applying to current master (apply log)
block/qcow2.h                      |  1 +
block/qcow2-cluster.c              | 11 +++++++++++
block/qcow2.c                      |  2 ++
tests/qemu-iotests/026             | 17 +++++++++++++++++
tests/qemu-iotests/026.out         |  8 ++++++++
tests/qemu-iotests/026.out.nocache | 14 +++++++++++---
6 files changed, 50 insertions(+), 3 deletions(-)
[Qemu-devel] [PATCH 0/3] qcow2: Fix cluster leaks on write error
Posted by Kevin Wolf 7 years, 4 months ago
Kevin Wolf (3):
  qemu-iotests: Update 026.out.nocache reference output
  qcow2: Free allocated clusters on write error
  qemu-iotests: Test qcow2 not leaking clusters on write error

 block/qcow2.h                      |  1 +
 block/qcow2-cluster.c              | 11 +++++++++++
 block/qcow2.c                      |  2 ++
 tests/qemu-iotests/026             | 17 +++++++++++++++++
 tests/qemu-iotests/026.out         |  8 ++++++++
 tests/qemu-iotests/026.out.nocache | 14 +++++++++++---
 6 files changed, 50 insertions(+), 3 deletions(-)

-- 
2.13.6


Re: [Qemu-devel] [PATCH 0/3] qcow2: Fix cluster leaks on write error
Posted by Max Reitz 7 years, 4 months ago
On 2018-06-28 17:39, Kevin Wolf wrote:
> Kevin Wolf (3):
>   qemu-iotests: Update 026.out.nocache reference output
>   qcow2: Free allocated clusters on write error
>   qemu-iotests: Test qcow2 not leaking clusters on write error
> 
>  block/qcow2.h                      |  1 +
>  block/qcow2-cluster.c              | 11 +++++++++++
>  block/qcow2.c                      |  2 ++
>  tests/qemu-iotests/026             | 17 +++++++++++++++++
>  tests/qemu-iotests/026.out         |  8 ++++++++
>  tests/qemu-iotests/026.out.nocache | 14 +++++++++++---
>  6 files changed, 50 insertions(+), 3 deletions(-)

Reviewed-by: Max Reitz <mreitz@redhat.com>

Re: [Qemu-devel] [PATCH 0/3] qcow2: Fix cluster leaks on write error
Posted by Kevin Wolf 7 years, 4 months ago
Am 28.06.2018 um 17:39 hat Kevin Wolf geschrieben:
> Kevin Wolf (3):
>   qemu-iotests: Update 026.out.nocache reference output
>   qcow2: Free allocated clusters on write error
>   qemu-iotests: Test qcow2 not leaking clusters on write error

Thanks for the review, applied to the block branch.

Kevin