From: Max Reitz <mreitz@redhat.com>
To: qemu-block@nongnu.org
Cc: qemu-devel@nongnu.org, Max Reitz <mreitz@redhat.com>,
Kevin Wolf <kwolf@redhat.com>,
Peter Maydell <peter.maydell@linaro.org>
Subject: [Qemu-devel] [PULL 00/29] Block patches
Date: Mon, 11 Jun 2018 16:25:42 +0200 [thread overview]
Message-ID: <20180611142611.6609-1-mreitz@redhat.com> (raw)
The following changes since commit 9f55925b8f50a962d1d08d815044db7767ae3838:
Merge remote-tracking branch 'remotes/vivier/tags/m68k-for-3.0-pull-request' into staging (2018-06-11 12:46:16 +0100)
are available in the Git repository at:
git://github.com/XanClic/qemu.git tags/pull-block-2018-06-11
for you to fetch changes up to c50abd175a88cd41c2c08339de91f6f6e4a7b162:
iotests: Add case for a corrupted inactive image (2018-06-11 16:18:45 +0200)
----------------------------------------------------------------
Block patches:
- Various bug fixes
- Removal of qemu-img convert's deprecated -s option
- qemu-io now exits with an error when a command failed
----------------------------------------------------------------
Alberto Garcia (1):
throttle: Fix crash on reopen
Max Reitz (25):
block/file-posix: Pass FD to locking helpers
block/file-posix: File locking during creation
iotests: Add creation test to 153
qemu-img: Amendment support implies create_opts
block: Add Error parameter to bdrv_amend_options
qemu-option: Pull out "Supported options" print
qemu-img: Add print_amend_option_help()
qemu-img: Recognize no creation support in -o help
iotests: Test help option for unsupporting formats
iotests: Rework 113
qcow2: Repair OFLAG_COPIED when fixing leaks
iotests: Repairing error during snapshot deletion
qemu-io: Drop command functions' return values
qemu-io: Let command functions return error code
qemu-io: Exit with error when a command failed
iotests.py: Add qemu_io_silent
iotests: Let 216 make use of qemu-io's exit code
qemu-img: Resolve relative backing paths in rebase
iotests: Add test for rebasing with relative paths
qemu-img: Special post-backing convert handling
iotests: Test post-backing convert target behavior
iotests: Fix 219's timing
block: Make bdrv_is_writable() public
qcow2: Do not mark inactive images corrupt
iotests: Add case for a corrupted inactive image
Thomas Huth (1):
qemu-img: Remove deprecated -s snapshot_id_or_name option
Vladimir Sementsov-Ogievskiy (2):
iotests: improve pause_job
block/qcow2-bitmap: fix free_bitmap_clusters
include/block/block.h | 4 +-
include/block/block_int.h | 3 +-
include/qemu-io.h | 9 +-
block.c | 25 ++-
block/file-posix.c | 64 ++++++--
block/qcow2-bitmap.c | 1 -
block/qcow2-refcount.c | 25 ++-
block/qcow2.c | 74 +++++----
block/throttle.c | 54 ++++---
qemu-img.c | 108 +++++++++++--
qemu-io-cmds.c | 276 +++++++++++++++++++---------------
qemu-io.c | 62 +++++---
util/qemu-option.c | 1 -
qemu-doc.texi | 7 -
qemu-img-cmds.hx | 4 +-
qemu-img.texi | 7 +-
tests/qemu-iotests/024 | 82 +++++++++-
tests/qemu-iotests/024.out | 30 ++++
tests/qemu-iotests/029 | 2 +-
tests/qemu-iotests/060 | 30 ++++
tests/qemu-iotests/060.out | 18 ++-
tests/qemu-iotests/061.out | 7 -
tests/qemu-iotests/080 | 4 +-
tests/qemu-iotests/080.out | 4 +-
tests/qemu-iotests/082 | 9 ++
tests/qemu-iotests/082.out | 53 ++++---
tests/qemu-iotests/112.out | 5 +-
tests/qemu-iotests/113 | 19 ++-
tests/qemu-iotests/113.out | 7 +-
tests/qemu-iotests/122 | 42 ++++++
tests/qemu-iotests/122.out | 18 +++
tests/qemu-iotests/153 | 18 +++
tests/qemu-iotests/153.out | 13 ++
tests/qemu-iotests/216 | 23 +--
tests/qemu-iotests/216.out | 17 +--
tests/qemu-iotests/217 | 90 +++++++++++
tests/qemu-iotests/217.out | 42 ++++++
tests/qemu-iotests/219 | 26 +++-
tests/qemu-iotests/219.out | 10 +-
tests/qemu-iotests/group | 1 +
tests/qemu-iotests/iotests.py | 18 ++-
41 files changed, 970 insertions(+), 342 deletions(-)
create mode 100755 tests/qemu-iotests/217
create mode 100644 tests/qemu-iotests/217.out
--
2.17.1
next reply other threads:[~2018-06-11 14:26 UTC|newest]
Thread overview: 38+ messages / expand[flat|nested] mbox.gz Atom feed top
2018-06-11 14:25 Max Reitz [this message]
2018-06-11 14:25 ` [Qemu-devel] [PULL 01/29] block/file-posix: Pass FD to locking helpers Max Reitz
2018-06-11 14:25 ` [Qemu-devel] [PULL 02/29] block/file-posix: File locking during creation Max Reitz
2018-06-11 14:25 ` [Qemu-devel] [PULL 03/29] iotests: Add creation test to 153 Max Reitz
2018-06-11 14:25 ` [Qemu-devel] [PULL 04/29] qemu-img: Amendment support implies create_opts Max Reitz
2018-06-11 14:25 ` [Qemu-devel] [PULL 05/29] block: Add Error parameter to bdrv_amend_options Max Reitz
2018-06-11 14:25 ` [Qemu-devel] [PULL 06/29] qemu-option: Pull out "Supported options" print Max Reitz
2018-06-11 14:25 ` [Qemu-devel] [PULL 07/29] qemu-img: Add print_amend_option_help() Max Reitz
2018-06-11 14:25 ` [Qemu-devel] [PULL 08/29] qemu-img: Recognize no creation support in -o help Max Reitz
2018-06-11 14:25 ` [Qemu-devel] [PULL 09/29] iotests: Test help option for unsupporting formats Max Reitz
2018-06-11 14:25 ` [Qemu-devel] [PULL 10/29] iotests: Rework 113 Max Reitz
2018-06-11 14:25 ` [Qemu-devel] [PULL 11/29] qcow2: Repair OFLAG_COPIED when fixing leaks Max Reitz
2018-06-11 14:25 ` [Qemu-devel] [PULL 12/29] iotests: Repairing error during snapshot deletion Max Reitz
2018-06-11 14:25 ` [Qemu-devel] [PULL 13/29] qemu-io: Drop command functions' return values Max Reitz
2018-06-11 14:25 ` [Qemu-devel] [PULL 14/29] qemu-io: Let command functions return error code Max Reitz
2018-06-11 14:25 ` [Qemu-devel] [PULL 15/29] qemu-io: Exit with error when a command failed Max Reitz
2018-06-11 14:25 ` [Qemu-devel] [PULL 16/29] iotests.py: Add qemu_io_silent Max Reitz
2018-06-11 14:25 ` [Qemu-devel] [PULL 17/29] iotests: Let 216 make use of qemu-io's exit code Max Reitz
2018-06-11 14:26 ` [Qemu-devel] [PULL 18/29] qemu-img: Resolve relative backing paths in rebase Max Reitz
2018-06-11 14:26 ` [Qemu-devel] [PULL 19/29] iotests: Add test for rebasing with relative paths Max Reitz
2018-06-11 14:26 ` [Qemu-devel] [PULL 20/29] qemu-img: Special post-backing convert handling Max Reitz
2018-06-11 14:26 ` [Qemu-devel] [PULL 21/29] iotests: Test post-backing convert target behavior Max Reitz
2018-06-11 14:26 ` [Qemu-devel] [PULL 22/29] iotests: improve pause_job Max Reitz
2018-06-11 14:26 ` [Qemu-devel] [PULL 23/29] iotests: Fix 219's timing Max Reitz
2018-06-11 14:26 ` [Qemu-devel] [PULL 24/29] qemu-img: Remove deprecated -s snapshot_id_or_name option Max Reitz
2018-06-11 14:26 ` [Qemu-devel] [PULL 25/29] block/qcow2-bitmap: fix free_bitmap_clusters Max Reitz
2018-06-11 14:26 ` [Qemu-devel] [PULL 26/29] throttle: Fix crash on reopen Max Reitz
2018-06-11 14:26 ` [Qemu-devel] [PULL 27/29] block: Make bdrv_is_writable() public Max Reitz
2018-06-11 14:26 ` [Qemu-devel] [PULL 28/29] qcow2: Do not mark inactive images corrupt Max Reitz
2018-06-11 14:26 ` [Qemu-devel] [PULL 29/29] iotests: Add case for a corrupted inactive image Max Reitz
2018-06-11 15:20 ` [Qemu-devel] [PULL 00/29] Block patches Peter Maydell
-- strict thread matches above, loose matches on Subject: below --
2016-03-17 15:56 Kevin Wolf
2016-03-17 16:46 ` Peter Maydell
2014-08-22 14:51 Kevin Wolf
2014-08-22 15:09 ` Daniel H Barboza
2014-08-22 16:23 ` Peter Maydell
2011-08-03 14:13 Kevin Wolf
2011-08-04 22:07 ` Anthony Liguori
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=20180611142611.6609-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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).