From: Kevin Wolf <kwolf@redhat.com>
To: qemu-block@nongnu.org
Cc: kwolf@redhat.com, qemu-devel@nongnu.org
Subject: [Qemu-devel] [PULL 00/34] Block layer patches
Date: Fri, 28 Apr 2017 22:33:08 +0200 [thread overview]
Message-ID: <1493411622-5343-1-git-send-email-kwolf@redhat.com> (raw)
The following changes since commit 81b2d5ceb0cfb4cdc2163492e3169ed714b0cda9:
Merge remote-tracking branch 'remotes/rth/tags/pull-tcg-20170426' into staging (2017-04-26 20:50:49 +0100)
are available in the git repository at:
git://repo.or.cz/qemu/kevin.git tags/for-upstream
for you to fetch changes up to 5fc0fe383fff318b38291dcdf2cf38e329ec232a:
Merge remote-tracking branch 'mreitz/tags/pull-block-2017-04-28' into queue-block (2017-04-28 20:52:17 +0200)
----------------------------------------------------------------
Block layer patches
----------------------------------------------------------------
Denis V. Lunev (2):
block: fix alignment calculations in bdrv_co_do_zero_pwritev
block: assert no image modification under BDRV_O_INACTIVE
Eric Blake (2):
iotests: Fix typo in 026
qcow2: Allow discard of final unaligned cluster
Fam Zheng (2):
block: Remove NULL check in bdrv_co_flush
iotests: 109: Filter out "len" of failed jobs
John Snow (2):
iotests: clarify help text
iotests: fix exclusion option
Kevin Wolf (8):
file-posix: Remove unnecessary includes
file-win32: Remove unnecessary include
migration: Call blk_resume_after_migration() for postcopy
qemu-iotests: Filter HMP readline escape characters
qemu-iotests: Test postcopy migration
qemu-iotests: Remove PERL_PROG and BC_PROG
qemu_iotests: Remove _readlink()
Merge remote-tracking branch 'mreitz/tags/pull-block-2017-04-28' into queue-block
Klim Kireev (1):
block: fix obvious coding style mistakes in block_int.h
Krzysztof Kozlowski (1):
block: Constify data passed by pointer to blk_name
Lidong Chen (1):
qemu-img: use blk_co_pwrite_zeroes for zero sectors when compressed
Max Reitz (13):
Revert "block/io: Comment out permission assertions"
block: An empty filename counts as no filename
iotests/051: Add test for empty filename
iotests: Launch qemu-nbd with -e 42
block: Do not unref bs->file on error in BD's open
qemu-img/convert: Use @opts for one thing only
qemu-img/convert: Move bs_n > 1 && -B check down
qemu-img: Document backing options
block/vhdx: Make vhdx_create() always set errp
block: Add errp to b{lk,drv}_truncate()
block: Add errp to BD.bdrv_truncate()
block: Add .bdrv_truncate() error messages
progress: Show current progress on SIGINFO
Peter Lieven (1):
qemu-img: simplify img_convert
Thomas Huth (1):
Issue a deprecation warning if the user specifies the "-hdachs" option.
Vladimir Sementsov-Ogievskiy (1):
qemu-img: improve convert_iteration_sectors()
block.c | 26 +--
block/blkdebug.c | 8 +-
block/blkreplay.c | 3 -
block/blkverify.c | 3 -
block/block-backend.c | 7 +-
block/commit.c | 5 +-
block/crypto.c | 5 +-
block/file-posix.c | 21 ++-
block/file-win32.c | 7 +-
block/gluster.c | 7 +-
block/io.c | 16 +-
block/iscsi.c | 6 +-
block/mirror.c | 2 +-
block/nfs.c | 12 +-
block/parallels.c | 13 +-
block/qcow.c | 6 +-
block/qcow2-refcount.c | 5 +-
block/qcow2.c | 31 ++--
block/qed.c | 8 +-
block/raw-format.c | 6 +-
block/rbd.c | 3 +-
block/sheepdog.c | 14 +-
block/vdi.c | 4 +-
block/vhdx-log.c | 2 +-
block/vhdx.c | 25 ++-
block/vmdk.c | 13 +-
block/vpc.c | 13 +-
blockdev.c | 21 +--
include/block/block.h | 2 +-
include/block/block_int.h | 8 +-
include/sysemu/block-backend.h | 4 +-
migration/savevm.c | 8 +
qemu-img-cmds.hx | 8 +-
qemu-img.c | 313 ++++++++++++++-----------------------
qemu-img.texi | 7 +-
qemu-io-cmds.c | 5 +-
qemu-options.hx | 4 +-
tests/qemu-iotests/026 | 2 +-
tests/qemu-iotests/026.out | 2 +-
tests/qemu-iotests/026.out.nocache | 2 +-
tests/qemu-iotests/028.out | 2 +-
tests/qemu-iotests/051 | 4 +-
tests/qemu-iotests/051.out | 109 ++++++-------
tests/qemu-iotests/051.pc.out | 135 ++++++++--------
tests/qemu-iotests/066 | 12 +-
tests/qemu-iotests/066.out | 12 +-
tests/qemu-iotests/068 | 4 +-
tests/qemu-iotests/068.out | 6 +-
tests/qemu-iotests/109 | 6 +-
tests/qemu-iotests/109.out | 20 +--
tests/qemu-iotests/122.out | 4 +-
tests/qemu-iotests/130.out | 4 +-
tests/qemu-iotests/142 | 2 +-
tests/qemu-iotests/142.out | 10 +-
tests/qemu-iotests/145 | 3 +-
tests/qemu-iotests/145.out | 2 +-
tests/qemu-iotests/181 | 119 ++++++++++++++
tests/qemu-iotests/181.out | 38 +++++
tests/qemu-iotests/common | 11 +-
tests/qemu-iotests/common.config | 24 ---
tests/qemu-iotests/common.filter | 13 ++
tests/qemu-iotests/common.qemu | 4 +-
tests/qemu-iotests/common.rc | 4 +-
tests/qemu-iotests/group | 1 +
util/qemu-progress.c | 3 +
vl.c | 2 +
66 files changed, 669 insertions(+), 542 deletions(-)
create mode 100755 tests/qemu-iotests/181
create mode 100644 tests/qemu-iotests/181.out
next reply other threads:[~2017-04-28 20:33 UTC|newest]
Thread overview: 41+ messages / expand[flat|nested] mbox.gz Atom feed top
2017-04-28 20:33 Kevin Wolf [this message]
2017-04-28 20:33 ` [Qemu-devel] [PULL 01/34] block: Constify data passed by pointer to blk_name Kevin Wolf
2017-04-28 20:33 ` [Qemu-devel] [PULL 02/34] file-posix: Remove unnecessary includes Kevin Wolf
2017-04-28 20:33 ` [Qemu-devel] [PULL 03/34] file-win32: Remove unnecessary include Kevin Wolf
2017-04-28 20:33 ` [Qemu-devel] [PULL 04/34] Revert "block/io: Comment out permission assertions" Kevin Wolf
2017-04-29 12:41 ` Paolo Bonzini
2017-04-28 20:33 ` [Qemu-devel] [PULL 05/34] qemu-img: simplify img_convert Kevin Wolf
2017-04-28 20:33 ` [Qemu-devel] [PULL 06/34] migration: Call blk_resume_after_migration() for postcopy Kevin Wolf
2017-04-28 20:33 ` [Qemu-devel] [PULL 07/34] qemu-iotests: Filter HMP readline escape characters Kevin Wolf
2017-04-28 20:33 ` [Qemu-devel] [PULL 08/34] qemu-iotests: Test postcopy migration Kevin Wolf
2017-04-28 20:33 ` [Qemu-devel] [PULL 09/34] block: An empty filename counts as no filename Kevin Wolf
2017-04-28 20:33 ` [Qemu-devel] [PULL 10/34] iotests/051: Add test for empty filename Kevin Wolf
2017-04-28 20:33 ` [Qemu-devel] [PULL 11/34] qemu-iotests: Remove PERL_PROG and BC_PROG Kevin Wolf
2017-04-28 20:33 ` [Qemu-devel] [PULL 12/34] qemu_iotests: Remove _readlink() Kevin Wolf
2017-04-28 20:33 ` [Qemu-devel] [PULL 13/34] block: Remove NULL check in bdrv_co_flush Kevin Wolf
2017-04-28 20:33 ` [Qemu-devel] [PULL 14/34] iotests: Launch qemu-nbd with -e 42 Kevin Wolf
2017-04-28 22:08 ` Eric Blake
2017-05-03 14:12 ` Kevin Wolf
2017-04-28 20:33 ` [Qemu-devel] [PULL 15/34] Issue a deprecation warning if the user specifies the "-hdachs" option Kevin Wolf
2017-04-28 20:33 ` [Qemu-devel] [PULL 16/34] iotests: Fix typo in 026 Kevin Wolf
2017-04-28 20:33 ` [Qemu-devel] [PULL 17/34] iotests: 109: Filter out "len" of failed jobs Kevin Wolf
2017-04-28 20:33 ` [Qemu-devel] [PULL 18/34] block: Do not unref bs->file on error in BD's open Kevin Wolf
2017-04-28 20:33 ` [Qemu-devel] [PULL 19/34] block: fix alignment calculations in bdrv_co_do_zero_pwritev Kevin Wolf
2017-04-28 20:33 ` [Qemu-devel] [PULL 20/34] qemu-img/convert: Use @opts for one thing only Kevin Wolf
2017-04-28 20:33 ` [Qemu-devel] [PULL 21/34] qemu-img/convert: Move bs_n > 1 && -B check down Kevin Wolf
2017-04-28 20:33 ` [Qemu-devel] [PULL 22/34] qemu-img: Document backing options Kevin Wolf
2017-04-28 20:33 ` [Qemu-devel] [PULL 23/34] block/vhdx: Make vhdx_create() always set errp Kevin Wolf
2017-04-28 20:33 ` [Qemu-devel] [PULL 24/34] block: Add errp to b{lk,drv}_truncate() Kevin Wolf
2017-04-28 20:33 ` [Qemu-devel] [PULL 25/34] block: Add errp to BD.bdrv_truncate() Kevin Wolf
2017-04-28 20:33 ` [Qemu-devel] [PULL 26/34] block: Add .bdrv_truncate() error messages Kevin Wolf
2017-04-28 20:33 ` [Qemu-devel] [PULL 27/34] qcow2: Allow discard of final unaligned cluster Kevin Wolf
2017-04-28 20:33 ` [Qemu-devel] [PULL 28/34] block: fix obvious coding style mistakes in block_int.h Kevin Wolf
2017-04-28 20:33 ` [Qemu-devel] [PULL 29/34] block: assert no image modification under BDRV_O_INACTIVE Kevin Wolf
2017-04-28 20:33 ` [Qemu-devel] [PULL 30/34] qemu-img: improve convert_iteration_sectors() Kevin Wolf
2017-04-28 20:33 ` [Qemu-devel] [PULL 31/34] qemu-img: use blk_co_pwrite_zeroes for zero sectors when compressed Kevin Wolf
2017-04-28 20:33 ` [Qemu-devel] [PULL 32/34] iotests: clarify help text Kevin Wolf
2017-04-28 20:33 ` [Qemu-devel] [PULL 33/34] iotests: fix exclusion option Kevin Wolf
2017-04-28 20:33 ` [Qemu-devel] [PULL 34/34] progress: Show current progress on SIGINFO Kevin Wolf
2017-05-04 12:46 ` [Qemu-devel] [Qemu-block] [PULL 00/34] Block layer patches Stefan Hajnoczi
-- strict thread matches above, loose matches on Subject: below --
2016-02-22 16:32 [Qemu-devel] " Kevin Wolf
2016-02-22 17:46 ` 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=1493411622-5343-1-git-send-email-kwolf@redhat.com \
--to=kwolf@redhat.com \
--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).