mbox series

[v11,0/3] qcow2: advanced compression options

Message ID 1575284222-548831-1-git-send-email-andrey.shinkevich@virtuozzo.com (mailing list archive)
Headers show
Series qcow2: advanced compression options | expand

Message

Andrey Shinkevich Dec. 2, 2019, 10:56 a.m. UTC
The compression filter driver is introduced as suggested by Max.
A sample usage of the filter can be found in the test #214.
Now, multiple clusters can be written compressed.
It is useful for the backup job.

v11:
  01: The device name was replaced with the filter underlying format
      name in the error message on failure of opening the compression
      driver as suggested by Vladimir.

Andrey Shinkevich (3):
  block: introduce compress filter driver
  qcow2: Allow writing compressed data of multiple clusters
  tests/qemu-iotests: add case to write compressed data of multiple
    clusters

 block/Makefile.objs        |   1 +
 block/filter-compress.c    | 168 +++++++++++++++++++++++++++++++++++++++++++++
 block/qcow2.c              | 102 +++++++++++++++++++--------
 qapi/block-core.json       |  10 +--
 tests/qemu-iotests/214     |  43 ++++++++++++
 tests/qemu-iotests/214.out |  14 ++++
 6 files changed, 307 insertions(+), 31 deletions(-)
 create mode 100644 block/filter-compress.c