The following changes since commit 672f9d0df10a68a5c5f2b32cbc8284abf9f5ee18:
Merge remote-tracking branch 'remotes/kevin/tags/for-upstream' into staging (2020-02-18 14:23:43 +0000) are available in the Git repository at: https://github.com/XanClic/qemu.git tags/pull-block-2020-02-20 for you to fetch changes up to dff8d44c96f128480430b0c59ed8760917dbd427: iotests: Test snapshot -l field separation (2020-02-20 16:43:42 +0100) ---------------------------------------------------------------- Block patches: - qemu-img convert: New --target-is-zero parameter - qcow2: Specify non-default compression type flag - optionally flat output for query-named-block-nodes - some fixes - pseudo-creation of images on block devices is now done by a generic block layer function ---------------------------------------------------------------- Daniel P. Berrangé (1): block: always fill entire LUKS header space with zeros David Edmondson (1): qemu-img: Add --target-is-zero to convert Max Reitz (11): iotests/147: Fix drive parameters iotests/279: Fix for non-qcow2 formats block/nbd: Fix hang in .bdrv_close() block: Generic file creation fallback file-posix: Drop hdev_co_create_opts() iscsi: Drop iscsi_co_create_opts() iotests: Add test for image creation fallback qemu-img: Fix convert -n -B for backing-less targets iotests: Test convert -n -B to backing-less target block: Fix VM size field width in snapshot dump iotests: Test snapshot -l field separation Peter Krempa (1): qapi: Allow getting flat output from 'query-named-block-nodes' Thomas Huth (1): iotests: Remove the superfluous 2nd check for the availability of quorum Vladimir Sementsov-Ogievskiy (3): docs: improve qcow2 spec about extending image header docs: qcow2: introduce compression type feature block/backup-top: fix flags handling block.c | 164 +++++++++++++++++++++++++++++++++---- block/backup-top.c | 31 ++++--- block/file-posix.c | 67 --------------- block/iscsi.c | 56 ------------- block/nbd.c | 14 +++- block/qapi.c | 15 +++- block/qcow2.c | 11 ++- blockdev.c | 8 +- docs/interop/qcow2.txt | 64 ++++++++++++++- docs/interop/qemu-img.rst | 9 +- include/block/block.h | 2 +- include/block/qapi.h | 4 +- monitor/hmp-cmds.c | 2 +- qapi/block-core.json | 7 +- qemu-img-cmds.hx | 4 +- qemu-img.c | 28 ++++++- tests/qemu-iotests/122 | 14 ++++ tests/qemu-iotests/122.out | 5 ++ tests/qemu-iotests/139 | 3 - tests/qemu-iotests/147 | 2 +- tests/qemu-iotests/259 | 62 ++++++++++++++ tests/qemu-iotests/259.out | 14 ++++ tests/qemu-iotests/279 | 7 +- tests/qemu-iotests/284 | 97 ++++++++++++++++++++++ tests/qemu-iotests/284.out | 62 ++++++++++++++ tests/qemu-iotests/286 | 76 +++++++++++++++++ tests/qemu-iotests/286.out | 8 ++ tests/qemu-iotests/group | 3 + 28 files changed, 659 insertions(+), 180 deletions(-) create mode 100755 tests/qemu-iotests/259 create mode 100644 tests/qemu-iotests/259.out create mode 100755 tests/qemu-iotests/284 create mode 100644 tests/qemu-iotests/284.out create mode 100755 tests/qemu-iotests/286 create mode 100644 tests/qemu-iotests/286.out -- 2.24.1