From: Kevin Wolf <kwolf@redhat.com>
To: qemu-block@nongnu.org
Cc: kwolf@redhat.com, qemu-devel@nongnu.org
Subject: [PULL 00/26] Block layer patches
Date: Thu, 12 Oct 2023 18:21:58 +0200 [thread overview]
Message-ID: <20231012162224.240535-1-kwolf@redhat.com> (raw)
The following changes since commit a51e5124a655b3dad80b36b18547cb1eca2c5eb2:
Merge tag 'pull-omnibus-111023-1' of https://gitlab.com/stsquad/qemu into staging (2023-10-11 09:43:10 -0400)
are available in the Git repository at:
https://repo.or.cz/qemu/kevin.git tags/for-upstream
for you to fetch changes up to e6e964b8b021446c8d3d1f91c0208f653e9ec92c:
block: Add assertion for bdrv_graph_wrlock() (2023-10-12 16:31:33 +0200)
----------------------------------------------------------------
Block layer patches
- Clean up coroutine versions of bdrv_{is_allocated,block_status}*
- Graph locking part 5 (protect children/parent links)
----------------------------------------------------------------
Emanuele Giuseppe Esposito (1):
block: Mark drain related functions GRAPH_RDLOCK
Kevin Wolf (21):
test-bdrv-drain: Don't call bdrv_graph_wrlock() in coroutine context
block-coroutine-wrapper: Add no_co_wrapper_bdrv_rdlock functions
block: Take graph rdlock in bdrv_inactivate_all()
block: Mark bdrv_first_blk() and bdrv_is_root_node() GRAPH_RDLOCK
block: Mark bdrv_parent_cb_resize() and callers GRAPH_RDLOCK
block: Mark bdrv_snapshot_fallback() and callers GRAPH_RDLOCK
block: Take graph rdlock in parts of reopen
block: Mark bdrv_get_xdbg_block_graph() and callers GRAPH_RDLOCK
block: Mark bdrv_refresh_filename() and callers GRAPH_RDLOCK
block: Mark bdrv_primary_child() and callers GRAPH_RDLOCK
block: Mark bdrv_get_parent_name() and callers GRAPH_RDLOCK
block: Mark bdrv_amend_options() and callers GRAPH_RDLOCK
qcow2: Mark qcow2_signal_corruption() and callers GRAPH_RDLOCK
qcow2: Mark qcow2_inactivate() and callers GRAPH_RDLOCK
qcow2: Mark check_constraints_on_bitmap() GRAPH_RDLOCK
block: Mark bdrv_op_is_blocked() and callers GRAPH_RDLOCK
block: Mark bdrv_apply_auto_read_only() and callers GRAPH_RDLOCK
block: Mark bdrv_get_specific_info() and callers GRAPH_RDLOCK
block: Protect bs->parents with graph_lock
block: Protect bs->children with graph_lock
block: Add assertion for bdrv_graph_wrlock()
Paolo Bonzini (4):
block: rename the bdrv_co_block_status static function
block: complete public block status API
block: switch to co_wrapper for bdrv_is_allocated_*
block: convert more bdrv_is_allocated* and bdrv_block_status* calls to coroutine versions
block/qcow2.h | 187 ++++++++++++++++------------
block/vhdx.h | 5 +-
include/block/block-common.h | 7 +-
include/block/block-global-state.h | 34 ++---
include/block/block-io.h | 71 +++++++----
include/block/block_int-common.h | 69 +++++-----
include/block/block_int-io.h | 7 +-
include/block/graph-lock.h | 3 +-
include/block/qapi.h | 23 ++--
include/block/snapshot.h | 24 ++--
include/sysemu/block-backend-global-state.h | 4 +-
block.c | 120 ++++++++++++------
block/backup.c | 1 +
block/block-backend.c | 9 +-
block/bochs.c | 2 +
block/cloop.c | 2 +
block/commit.c | 1 +
block/copy-before-write.c | 2 +-
block/copy-on-read.c | 8 +-
block/crypto.c | 4 +-
block/curl.c | 2 +
block/dmg.c | 2 +
block/export/export.c | 4 +
block/gluster.c | 2 +
block/graph-lock.c | 3 +-
block/io.c | 143 ++++++++++-----------
block/iscsi.c | 2 +
block/mirror.c | 10 +-
block/monitor/block-hmp-cmds.c | 5 +
block/nbd.c | 3 +-
block/nfs.c | 2 +-
block/parallels.c | 3 +
block/qapi-sysemu.c | 11 +-
block/qapi.c | 11 +-
block/qcow.c | 3 +
block/qcow2-bitmap.c | 38 +++---
block/qcow2-cache.c | 11 +-
block/qcow2-cluster.c | 62 ++++-----
block/qcow2-refcount.c | 80 ++++++------
block/qcow2.c | 77 +++++++-----
block/quorum.c | 4 +-
block/raw-format.c | 2 +
block/rbd.c | 4 +
block/replication.c | 29 +++--
block/snapshot.c | 54 ++++++--
block/stream.c | 8 +-
block/vdi.c | 3 +
block/vhdx.c | 4 +
block/vmdk.c | 53 +++++---
block/vpc.c | 3 +
block/vvfat.c | 20 +--
blockdev.c | 44 +++++++
blockjob.c | 1 +
migration/block.c | 2 +
migration/migration-hmp-cmds.c | 2 +
qemu-img.c | 16 +++
qemu-io-cmds.c | 3 +
tests/unit/test-bdrv-drain.c | 15 ++-
tests/unit/test-block-iothread.c | 8 ++
scripts/block-coroutine-wrapper.py | 10 +-
60 files changed, 843 insertions(+), 499 deletions(-)
next reply other threads:[~2023-10-12 16:23 UTC|newest]
Thread overview: 28+ messages / expand[flat|nested] mbox.gz Atom feed top
2023-10-12 16:21 Kevin Wolf [this message]
2023-10-12 16:21 ` [PULL 01/26] block: rename the bdrv_co_block_status static function Kevin Wolf
2023-10-12 16:22 ` [PULL 02/26] block: complete public block status API Kevin Wolf
2023-10-12 16:22 ` [PULL 03/26] block: switch to co_wrapper for bdrv_is_allocated_* Kevin Wolf
2023-10-12 16:22 ` [PULL 04/26] block: convert more bdrv_is_allocated* and bdrv_block_status* calls to coroutine versions Kevin Wolf
2023-10-12 16:22 ` [PULL 05/26] test-bdrv-drain: Don't call bdrv_graph_wrlock() in coroutine context Kevin Wolf
2023-10-12 16:22 ` [PULL 06/26] block-coroutine-wrapper: Add no_co_wrapper_bdrv_rdlock functions Kevin Wolf
2023-10-12 16:22 ` [PULL 07/26] block: Take graph rdlock in bdrv_inactivate_all() Kevin Wolf
2023-10-12 16:22 ` [PULL 08/26] block: Mark bdrv_first_blk() and bdrv_is_root_node() GRAPH_RDLOCK Kevin Wolf
2023-10-12 16:22 ` [PULL 09/26] block: Mark drain related functions GRAPH_RDLOCK Kevin Wolf
2023-10-12 16:22 ` [PULL 10/26] block: Mark bdrv_parent_cb_resize() and callers GRAPH_RDLOCK Kevin Wolf
2023-10-12 16:22 ` [PULL 11/26] block: Mark bdrv_snapshot_fallback() " Kevin Wolf
2023-10-12 16:22 ` [PULL 12/26] block: Take graph rdlock in parts of reopen Kevin Wolf
2023-10-12 16:22 ` [PULL 13/26] block: Mark bdrv_get_xdbg_block_graph() and callers GRAPH_RDLOCK Kevin Wolf
2023-10-12 16:22 ` [PULL 14/26] block: Mark bdrv_refresh_filename() " Kevin Wolf
2023-10-12 16:22 ` [PULL 15/26] block: Mark bdrv_primary_child() " Kevin Wolf
2023-10-12 16:22 ` [PULL 16/26] block: Mark bdrv_get_parent_name() " Kevin Wolf
2023-10-12 16:22 ` [PULL 17/26] block: Mark bdrv_amend_options() " Kevin Wolf
2023-10-12 16:22 ` [PULL 18/26] qcow2: Mark qcow2_signal_corruption() " Kevin Wolf
2023-10-12 16:22 ` [PULL 19/26] qcow2: Mark qcow2_inactivate() " Kevin Wolf
2023-10-12 16:22 ` [PULL 20/26] qcow2: Mark check_constraints_on_bitmap() GRAPH_RDLOCK Kevin Wolf
2023-10-12 16:22 ` [PULL 21/26] block: Mark bdrv_op_is_blocked() and callers GRAPH_RDLOCK Kevin Wolf
2023-10-12 16:22 ` [PULL 22/26] block: Mark bdrv_apply_auto_read_only() " Kevin Wolf
2023-10-12 16:22 ` [PULL 23/26] block: Mark bdrv_get_specific_info() " Kevin Wolf
2023-10-12 16:22 ` [PULL 24/26] block: Protect bs->parents with graph_lock Kevin Wolf
2023-10-12 16:22 ` [PULL 25/26] block: Protect bs->children " Kevin Wolf
2023-10-12 16:22 ` [PULL 26/26] block: Add assertion for bdrv_graph_wrlock() Kevin Wolf
2023-10-16 19:20 ` [PULL 00/26] Block layer patches Stefan Hajnoczi
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=20231012162224.240535-1-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).