[PATCH v3 0/2] qemu-img: map: implement support for compressed clusters

Andrey Drobyshev via posted 2 patches 7 months, 4 weeks ago
Patches applied successfully (tree, apply log)
git fetch https://github.com/patchew-project/qemu tags/patchew/20230907210226.953821-1-andrey.drobyshev@virtuozzo.com
Maintainers: Kevin Wolf <kwolf@redhat.com>, Hanna Reitz <hreitz@redhat.com>, Fam Zheng <fam@euphon.net>, Eric Blake <eblake@redhat.com>, Markus Armbruster <armbru@redhat.com>, Vladimir Sementsov-Ogievskiy <vsementsov@yandex-team.ru>
block/qcow.c                                  |   5 +-
block/qcow2.c                                 |   3 +
block/vmdk.c                                  |   2 +
include/block/block-common.h                  |   3 +
qapi/block-core.json                          |   7 +-
qemu-img.c                                    |   8 +-
tests/qemu-iotests/122.out                    |  84 +-
tests/qemu-iotests/146.out                    | 780 +++++++++---------
tests/qemu-iotests/154.out                    | 194 ++---
tests/qemu-iotests/179.out                    | 178 ++--
tests/qemu-iotests/209.out                    |   4 +-
tests/qemu-iotests/221.out                    |  16 +-
tests/qemu-iotests/223.out                    |  60 +-
tests/qemu-iotests/241.out                    |  10 +-
tests/qemu-iotests/244.out                    |  24 +-
tests/qemu-iotests/252.out                    |  10 +-
tests/qemu-iotests/253.out                    |  20 +-
tests/qemu-iotests/274.out                    |  48 +-
.../tests/nbd-qemu-allocation.out             |  16 +-
tests/qemu-iotests/tests/qemu-img-bitmaps.out |  24 +-
20 files changed, 757 insertions(+), 739 deletions(-)
[PATCH v3 0/2] qemu-img: map: implement support for compressed clusters
Posted by Andrey Drobyshev via 7 months, 4 weeks ago
v2 --> v3:
  * Make "compressed" field mandatory, not optional;
  * Adjust field description in qapi/block-core.json;
  * Squash patch 3 into patch 2 so that failing tests don't break bisect;
  * Update even more tests' outputs now that the field is mandatory.

v2: https://lists.nongnu.org/archive/html/qemu-block/2023-07/msg00106.html

Andrey Drobyshev (2):
  block: add BDRV_BLOCK_COMPRESSED flag for bdrv_block_status()
  qemu-img: map: report compressed data blocks

 block/qcow.c                                  |   5 +-
 block/qcow2.c                                 |   3 +
 block/vmdk.c                                  |   2 +
 include/block/block-common.h                  |   3 +
 qapi/block-core.json                          |   7 +-
 qemu-img.c                                    |   8 +-
 tests/qemu-iotests/122.out                    |  84 +-
 tests/qemu-iotests/146.out                    | 780 +++++++++---------
 tests/qemu-iotests/154.out                    | 194 ++---
 tests/qemu-iotests/179.out                    | 178 ++--
 tests/qemu-iotests/209.out                    |   4 +-
 tests/qemu-iotests/221.out                    |  16 +-
 tests/qemu-iotests/223.out                    |  60 +-
 tests/qemu-iotests/241.out                    |  10 +-
 tests/qemu-iotests/244.out                    |  24 +-
 tests/qemu-iotests/252.out                    |  10 +-
 tests/qemu-iotests/253.out                    |  20 +-
 tests/qemu-iotests/274.out                    |  48 +-
 .../tests/nbd-qemu-allocation.out             |  16 +-
 tests/qemu-iotests/tests/qemu-img-bitmaps.out |  24 +-
 20 files changed, 757 insertions(+), 739 deletions(-)

-- 
2.39.3
Re: [PATCH v3 0/2] qemu-img: map: implement support for compressed clusters
Posted by Kevin Wolf 7 months, 3 weeks ago
Am 07.09.2023 um 23:02 hat Andrey Drobyshev via geschrieben:
> v2 --> v3:
>   * Make "compressed" field mandatory, not optional;
>   * Adjust field description in qapi/block-core.json;
>   * Squash patch 3 into patch 2 so that failing tests don't break bisect;
>   * Update even more tests' outputs now that the field is mandatory.
> 
> v2: https://lists.nongnu.org/archive/html/qemu-block/2023-07/msg00106.html

Thanks, applied to the block branch.

Kevin