* [Qemu-devel] [PULL v2 00/48] Block layer patches
@ 2016-03-30 10:59 Kevin Wolf
2016-03-30 14:03 ` Peter Maydell
0 siblings, 1 reply; 2+ messages in thread
From: Kevin Wolf @ 2016-03-30 10:59 UTC (permalink / raw)
To: qemu-block; +Cc: kwolf, peter.maydell, qemu-devel
The following changes since commit 553934db664ecee676650fac0330dceff3531736:
Merge remote-tracking branch 'remotes/cody/tags/block-pull-request' into staging (2016-03-29 19:54: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 f4e732a0a773c4e44c2c183a5d63cd850ffb57d1:
iotests: Test qemu-img convert -S 0 behavior (2016-03-30 12:16:04 +0200)
----------------------------------------------------------------
Block layer patches
----------------------------------------------------------------
Daniel P. Berrange (8):
block: add flag to indicate that no I/O will be performed
qemu-img/qemu-io: don't prompt for passwords if not required
tests: redirect stderr to stdout for iotests
tests: refactor python I/O tests helper main method
tests: add output filter to python I/O tests helper
block: add generic full disk encryption driver
block: move encryption deprecation warning into qcow code
block: an interoperability test for luks vs dm-crypt/cryptsetup
Kevin Wolf (27):
block: Remove bdrv_make_anon()
block: Remove copy-on-read from bdrv_move_feature_fields()
block: Remove dirty bitmaps from bdrv_move_feature_fields()
block: Remove cache.writeback from blockdev-add
block: Make backing files always writeback
block: Reject writethrough mode except at the root
block: Remove blk_set_bs()
block: Add bdrv_parse_cache_mode()
qemu-nbd: Call blk_set_enable_write_cache() explicitly
qemu-io: Call blk_set_enable_write_cache() explicitly
qemu-img: Expand all BDRV_O_FLAGS uses
qemu-img: Call blk_set_enable_write_cache() explicitly
xen_disk: Call blk_set_enable_write_cache() explicitly
block: blockdev_init(): Call blk_set_enable_write_cache() explicitly
block: Always set writeback mode in blk_new_open()
block: Handle flush error in bdrv_pwrite_sync()
block: Move enable_write_cache to BB level
block/qapi: Use blk_enable_write_cache()
block: Introduce bdrv_co_writev_flags()
iscsi: Support BDRV_REQ_FUA
nbd: Support BDRV_REQ_FUA
raw: Support BDRV_REQ_FUA
block: Use bdrv_parse_cache_mode() in drive_init()
qemu-io: Use bdrv_parse_cache_mode() in reopen_f()
block: Remove bdrv_parse_cache_flags()
block: Remove BDRV_O_CACHE_WB
block: Remove bdrv_(set_)enable_write_cache()
Max Reitz (6):
block/qapi: Set s->device in bdrv_query_stats()
block/qapi: Pass bdrv_query_blk_stats() s->stats
qemu-img: Fix preallocation with -S 0 for convert
block/null-{co,aio}: Allow reading zeroes
block/null-{co,aio}: Implement get_block_status()
iotests: Test qemu-img convert -S 0 behavior
Pavel Dovgalyuk (4):
block: add flush callback
replay: bh scheduling fix
replay: fix error message
replay: introduce block devices record/replay
Peter Xu (2):
block/qapi: make two printf() formats literal
block/qapi: fix unbounded stack for dump_qdict
Programmingkid (1):
block/raw-posix.c: Make physical devices usable in QEMU under Mac OS X host
block.c | 111 +--
block/Makefile.objs | 4 +-
block/backup.c | 1 -
block/blkreplay.c | 160 ++++
block/block-backend.c | 62 +-
block/crypto.c | 586 +++++++++++++
block/io.c | 24 +-
block/iscsi.c | 30 +-
block/mirror.c | 1 -
block/nbd-client.c | 13 +-
block/nbd-client.h | 2 +-
block/nbd.c | 27 +-
block/null.c | 42 +
block/parallels.c | 3 +-
block/qapi.c | 75 +-
block/qcow.c | 12 +-
block/qcow2.c | 17 +-
block/qed.c | 3 +-
block/raw-posix.c | 165 +++-
block/raw_bsd.c | 17 +-
block/sheepdog.c | 5 +-
block/vdi.c | 3 +-
block/vhdx.c | 3 +-
block/vmdk.c | 8 +-
block/vpc.c | 3 +-
block/vvfat.c | 3 +-
blockdev.c | 26 +-
docs/replay.txt | 20 +
hw/block/xen_disk.c | 5 +-
include/block/block.h | 11 +-
include/block/block_int.h | 17 +-
include/block/qapi.h | 3 +-
include/sysemu/replay.h | 2 +
qapi/block-core.json | 26 +-
qemu-img.c | 120 +--
qemu-io-cmds.c | 13 +-
qemu-io.c | 23 +-
qemu-nbd.c | 5 +-
replay/replay-events.c | 24 +-
replay/replay-internal.h | 1 +
replay/replay.c | 2 +-
stubs/replay.c | 4 +
tests/qemu-iotests/049.out | 6 -
tests/qemu-iotests/051 | 2 +-
tests/qemu-iotests/051.pc.out | 10 +-
tests/qemu-iotests/087 | 3 +-
tests/qemu-iotests/087.out | 26 +-
tests/qemu-iotests/122.out | 6 +-
tests/qemu-iotests/134.out | 18 -
tests/qemu-iotests/142 | 63 +-
tests/qemu-iotests/142.out | 175 ++--
tests/qemu-iotests/149 | 519 ++++++++++++
tests/qemu-iotests/149.out | 1880 +++++++++++++++++++++++++++++++++++++++++
tests/qemu-iotests/150 | 105 +++
tests/qemu-iotests/150.out | 14 +
tests/qemu-iotests/common | 1 +
tests/qemu-iotests/group | 2 +
tests/qemu-iotests/iotests.py | 48 +-
58 files changed, 4015 insertions(+), 545 deletions(-)
create mode 100755 block/blkreplay.c
create mode 100644 block/crypto.c
create mode 100755 tests/qemu-iotests/149
create mode 100644 tests/qemu-iotests/149.out
create mode 100755 tests/qemu-iotests/150
create mode 100644 tests/qemu-iotests/150.out
^ permalink raw reply [flat|nested] 2+ messages in thread
* Re: [Qemu-devel] [PULL v2 00/48] Block layer patches
2016-03-30 10:59 [Qemu-devel] [PULL v2 00/48] Block layer patches Kevin Wolf
@ 2016-03-30 14:03 ` Peter Maydell
0 siblings, 0 replies; 2+ messages in thread
From: Peter Maydell @ 2016-03-30 14:03 UTC (permalink / raw)
To: Kevin Wolf; +Cc: QEMU Developers, Qemu-block
On 30 March 2016 at 11:59, Kevin Wolf <kwolf@redhat.com> wrote:
> The following changes since commit 553934db664ecee676650fac0330dceff3531736:
>
> Merge remote-tracking branch 'remotes/cody/tags/block-pull-request' into staging (2016-03-29 19:54: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 f4e732a0a773c4e44c2c183a5d63cd850ffb57d1:
>
> iotests: Test qemu-img convert -S 0 behavior (2016-03-30 12:16:04 +0200)
>
> ----------------------------------------------------------------
> Block layer patches
>
> ----------------------------------------------------------------
Applied, thanks.
-- PMM
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2016-03-30 14:04 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-03-30 10:59 [Qemu-devel] [PULL v2 00/48] Block layer patches Kevin Wolf
2016-03-30 14:03 ` Peter Maydell
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).