From: Kevin Wolf <kwolf@redhat.com>
To: qemu-block@nongnu.org
Cc: kwolf@redhat.com, qemu-devel@nongnu.org
Subject: [Qemu-devel] [PULL 00/23] Block layer patches
Date: Mon, 24 Oct 2016 19:01:48 +0200 [thread overview]
Message-ID: <1477328531-30879-1-git-send-email-kwolf@redhat.com> (raw)
The following changes since commit a3ae21ec3fe036f536dc94cad735931777143103:
Merge remote-tracking branch 'remotes/bonzini/tags/for-upstream' into staging (2016-10-24 15:03:09 +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 25493dc012e7c10dba51ee893b634a1dbfeed126:
Merge remote-tracking branch 'mreitz/tags/pull-block-2016-10-24' into queue-block (2016-10-24 18:02:26 +0200)
----------------------------------------------------------------
Block layer patches
----------------------------------------------------------------
Alberto Garcia (2):
throttle: Correct access to wrong BlockBackendPublic structures
qemu-iotests: Test I/O in a single drive from a throttling group
Changlong Xie (1):
block/replication: Clarify 'top-id' parameter usage
Fam Zheng (9):
qcow2: Support BDRV_REQ_MAY_UNMAP
block: Hide HBitmap in block dirty bitmap interface
HBitmap: Introduce "meta" bitmap to track bit changes
tests: Add test code for meta bitmap
block: Support meta dirty bitmap
block: Add two dirty bitmap getters
block: Assert that bdrv_release_dirty_bitmap succeeded
tests: Add test code for hbitmap serialization
block: More operations for meta dirty bitmap
Halil Pasic (1):
block: improve error handling in raw_open
Kevin Wolf (2):
block: Remove "options" indirection from blockdev-add
Merge remote-tracking branch 'mreitz/tags/pull-block-2016-10-24' into queue-block
Max Reitz (3):
qemu-nbd: Add --fork option
iotests: Remove raciness from 162
iotests: Do not rely on unavailable domains in 162
Paolo Bonzini (2):
quorum: change child_iter to children_read
quorum: do not allocate multiple iovecs for FIFO strategy
Pino Toscano (1):
qapi: fix memory leak in bdrv_image_info_specific_dump
Vladimir Sementsov-Ogievskiy (2):
hbitmap: serialization
block: BdrvDirtyBitmap serialization interface
Xu Tian (1):
block: failed qemu-img command should return non-zero exit code
block/backup.c | 14 ++-
block/dirty-bitmap.c | 160 ++++++++++++++++++++++++-
block/mirror.c | 24 ++--
block/qapi.c | 1 +
block/qcow2-cluster.c | 9 +-
block/qcow2.c | 3 +-
block/qcow2.h | 3 +-
block/quorum.c | 93 +++++++--------
block/raw-posix.c | 1 +
block/raw-win32.c | 1 +
block/replication.c | 5 +
block/throttle-groups.c | 27 ++++-
docs/qmp-commands.txt | 84 +++++++------
include/block/dirty-bitmap.h | 35 +++++-
include/qemu/hbitmap.h | 100 ++++++++++++++++
include/qemu/typedefs.h | 1 +
qapi/block-core.json | 7 +-
qemu-img.c | 2 +
qemu-nbd.c | 17 ++-
qemu-nbd.texi | 2 +
tests/qemu-iotests/041 | 11 +-
tests/qemu-iotests/067 | 12 +-
tests/qemu-iotests/071 | 118 ++++++++-----------
tests/qemu-iotests/081 | 52 ++++-----
tests/qemu-iotests/085 | 9 +-
tests/qemu-iotests/087 | 76 +++++-------
tests/qemu-iotests/093 | 33 +++++-
tests/qemu-iotests/093.out | 4 +-
tests/qemu-iotests/117 | 12 +-
tests/qemu-iotests/118 | 42 +++----
tests/qemu-iotests/124 | 20 ++--
tests/qemu-iotests/139 | 10 +-
tests/qemu-iotests/141 | 13 +--
tests/qemu-iotests/155 | 10 +-
tests/qemu-iotests/162 | 22 +++-
tests/qemu-iotests/162.out | 2 +-
tests/test-hbitmap.c | 272 +++++++++++++++++++++++++++++++++++++++++++
util/hbitmap.c | 206 +++++++++++++++++++++++++++++---
38 files changed, 1140 insertions(+), 373 deletions(-)
next reply other threads:[~2016-10-24 17:02 UTC|newest]
Thread overview: 34+ messages / expand[flat|nested] mbox.gz Atom feed top
2016-10-24 17:01 Kevin Wolf [this message]
2016-10-24 17:01 ` [Qemu-devel] [PULL 01/23] block: failed qemu-img command should return non-zero exit code Kevin Wolf
2016-10-24 17:01 ` [Qemu-devel] [PULL 02/23] qcow2: Support BDRV_REQ_MAY_UNMAP Kevin Wolf
2016-10-24 17:01 ` [Qemu-devel] [PULL 03/23] block: Remove "options" indirection from blockdev-add Kevin Wolf
2016-10-24 17:01 ` [Qemu-devel] [PULL 04/23] block: improve error handling in raw_open Kevin Wolf
2016-10-24 17:01 ` [Qemu-devel] [PULL 05/23] qapi: fix memory leak in bdrv_image_info_specific_dump Kevin Wolf
2016-10-24 17:01 ` [Qemu-devel] [PULL 06/23] throttle: Correct access to wrong BlockBackendPublic structures Kevin Wolf
2016-10-24 17:01 ` [Qemu-devel] [PULL 07/23] qemu-iotests: Test I/O in a single drive from a throttling group Kevin Wolf
2016-10-24 17:01 ` [Qemu-devel] [PULL 08/23] qemu-nbd: Add --fork option Kevin Wolf
2016-10-24 17:01 ` [Qemu-devel] [PULL 09/23] iotests: Remove raciness from 162 Kevin Wolf
2016-10-24 17:01 ` [Qemu-devel] [PULL 10/23] iotests: Do not rely on unavailable domains in 162 Kevin Wolf
2016-10-24 17:01 ` [Qemu-devel] [PULL 11/23] quorum: change child_iter to children_read Kevin Wolf
2016-10-24 17:02 ` [Qemu-devel] [PULL 12/23] quorum: do not allocate multiple iovecs for FIFO strategy Kevin Wolf
2016-10-24 17:02 ` [Qemu-devel] [PULL 13/23] block: Hide HBitmap in block dirty bitmap interface Kevin Wolf
2016-10-24 17:02 ` [Qemu-devel] [PULL 14/23] HBitmap: Introduce "meta" bitmap to track bit changes Kevin Wolf
2016-10-24 17:02 ` [Qemu-devel] [PULL 15/23] tests: Add test code for meta bitmap Kevin Wolf
2016-10-24 17:02 ` [Qemu-devel] [PULL 16/23] block: Support meta dirty bitmap Kevin Wolf
2016-10-24 17:02 ` [Qemu-devel] [PULL 17/23] block: Add two dirty bitmap getters Kevin Wolf
2016-10-24 17:02 ` [Qemu-devel] [PULL 18/23] block: Assert that bdrv_release_dirty_bitmap succeeded Kevin Wolf
2016-10-24 17:02 ` [Qemu-devel] [PULL 19/23] hbitmap: serialization Kevin Wolf
2016-10-24 17:02 ` [Qemu-devel] [PULL 20/23] block: BdrvDirtyBitmap serialization interface Kevin Wolf
2016-10-24 17:02 ` [Qemu-devel] [PULL 21/23] tests: Add test code for hbitmap serialization Kevin Wolf
2016-10-24 17:02 ` [Qemu-devel] [PULL 22/23] block: More operations for meta dirty bitmap Kevin Wolf
2016-10-24 17:02 ` [Qemu-devel] [PULL 23/23] block/replication: Clarify 'top-id' parameter usage Kevin Wolf
2016-10-24 18:36 ` [Qemu-devel] [PULL 00/23] Block layer patches Peter Maydell
-- strict thread matches above, loose matches on Subject: below --
2018-10-01 17:18 Kevin Wolf
2018-10-02 8:06 ` Peter Maydell
2018-10-03 15:46 ` Peter Maydell
2016-10-27 18:08 Kevin Wolf
2016-10-28 13:29 ` Peter Maydell
2015-09-11 19:40 Kevin Wolf
2015-09-14 9:46 ` Peter Maydell
2015-09-14 9:57 ` Kevin Wolf
2015-09-14 14:36 ` Max Reitz
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=1477328531-30879-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).