From: Max Reitz <mreitz@redhat.com>
To: qemu-block@nongnu.org
Cc: Kevin Wolf <kwolf@redhat.com>,
Peter Maydell <peter.maydell@linaro.org>,
qemu-devel@nongnu.org, Max Reitz <mreitz@redhat.com>
Subject: [PULL 00/18] Block patches
Date: Thu, 20 Feb 2020 17:06:52 +0100 [thread overview]
Message-ID: <20200220160710.533297-1-mreitz@redhat.com> (raw)
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
next reply other threads:[~2020-02-20 16:08 UTC|newest]
Thread overview: 33+ messages / expand[flat|nested] mbox.gz Atom feed top
2020-02-20 16:06 Max Reitz [this message]
2020-02-20 16:06 ` [PULL 01/18] docs: improve qcow2 spec about extending image header Max Reitz
2020-02-20 16:06 ` [PULL 02/18] docs: qcow2: introduce compression type feature Max Reitz
2020-02-20 16:06 ` [PULL 03/18] iotests: Remove the superfluous 2nd check for the availability of quorum Max Reitz
2020-02-20 16:06 ` [PULL 04/18] iotests/147: Fix drive parameters Max Reitz
2020-02-20 16:06 ` [PULL 05/18] qapi: Allow getting flat output from 'query-named-block-nodes' Max Reitz
2020-02-20 16:06 ` [PULL 06/18] qemu-img: Add --target-is-zero to convert Max Reitz
2020-02-20 16:36 ` Eric Blake
2020-02-20 20:18 ` David Edmondson
2020-02-20 16:06 ` [PULL 07/18] block: always fill entire LUKS header space with zeros Max Reitz
2020-02-20 16:07 ` [PULL 08/18] block/backup-top: fix flags handling Max Reitz
2020-02-20 16:07 ` [PULL 09/18] iotests/279: Fix for non-qcow2 formats Max Reitz
2020-02-20 16:07 ` [PULL 10/18] block/nbd: Fix hang in .bdrv_close() Max Reitz
2020-02-20 16:07 ` [PULL 11/18] block: Generic file creation fallback Max Reitz
2020-02-25 10:05 ` Peter Maydell
2020-02-25 10:19 ` Max Reitz
2020-02-20 16:07 ` [PULL 12/18] file-posix: Drop hdev_co_create_opts() Max Reitz
2020-02-20 16:07 ` [PULL 13/18] iscsi: Drop iscsi_co_create_opts() Max Reitz
2020-02-20 16:07 ` [PULL 14/18] iotests: Add test for image creation fallback Max Reitz
2020-02-20 16:07 ` [PULL 15/18] qemu-img: Fix convert -n -B for backing-less targets Max Reitz
2020-02-20 16:07 ` [PULL 16/18] iotests: Test convert -n -B to backing-less target Max Reitz
2020-02-20 16:07 ` [PULL 17/18] block: Fix VM size field width in snapshot dump Max Reitz
2020-02-20 16:07 ` [PULL 18/18] iotests: Test snapshot -l field separation Max Reitz
2020-02-21 14:20 ` [PULL 00/18] Block patches Peter Maydell
-- strict thread matches above, loose matches on Subject: below --
2022-06-15 15:51 Stefan Hajnoczi
2022-06-15 23:02 ` Richard Henderson
2020-06-22 15:10 Max Reitz
2020-06-22 19:29 ` no-reply
2020-06-23 12:55 ` Peter Maydell
2020-06-24 7:27 ` Max Reitz
2020-06-24 9:06 ` Thomas Huth
2020-01-30 21:30 Stefan Hajnoczi
2020-01-31 11:39 ` Peter Maydell
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20200220160710.533297-1-mreitz@redhat.com \
--to=mreitz@redhat.com \
--cc=kwolf@redhat.com \
--cc=peter.maydell@linaro.org \
--cc=qemu-block@nongnu.org \
--cc=qemu-devel@nongnu.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.