From: Emanuele Giuseppe Esposito <eesposit@redhat.com>
To: Kevin Wolf <kwolf@redhat.com>, qemu-block@nongnu.org
Cc: hreitz@redhat.com, pbonzini@redhat.com,
vsementsov@yandex-team.ru, qemu-devel@nongnu.org
Subject: Re: [PATCH 00/14] block: Move more functions to coroutines
Date: Thu, 15 Dec 2022 13:39:05 +0100 [thread overview]
Message-ID: <fa3fcc48-dd44-8274-60ff-55c253c50e30@redhat.com> (raw)
In-Reply-To: <20221213085320.95673-1-kwolf@redhat.com>
Am 13/12/2022 um 09:53 schrieb Kevin Wolf:
> This series converts some IO_CODE() functions to coroutine_fn because
> they access the graph and will need to hold the graph lock in the
> future. IO_CODE() functions can be called from iothreads, so taking the
> graph lock requires the function to run in coroutine context.
>
> Pretty much all of the changes in this series were posted by Emanuele
> before as part of "Protect the block layer with a rwlock: part 3". The
> major difference is that in the old version, the patches did two things
> at once: Converting functions to coroutine_fn, and adding the locking to
> them. This series does only the coroutine conversion. The locking part
> will be in another series which now comes with TSA annotations and makes
> the locking related changes big enough to have separate patches.
>
Reviewed-by: Emanuele Giuseppe Esposito <eesposit@redhat.com>
> Emanuele Giuseppe Esposito (14):
> block-coroutine-wrapper: support void functions
> block: Convert bdrv_io_plug() to co_wrapper
> block: Convert bdrv_io_unplug() to co_wrapper
> block: Rename refresh_total_sectors to bdrv_refresh_total_sectors
> block: Convert bdrv_refresh_total_sectors() to co_wrapper_mixed
> block-backend: use bdrv_getlength instead of blk_getlength
> block: use bdrv_co_refresh_total_sectors when possible
> block: Convert bdrv_get_allocated_file_size() to co_wrapper
> block: Convert bdrv_get_info() to co_wrapper_mixed
> block: Convert bdrv_is_inserted() to co_wrapper
> block: Convert bdrv_eject() to co_wrapper
> block: convert bdrv_lock_medium in co_wrapper
> block: Convert bdrv_debug_event to co_wrapper_mixed
> block: Rename newly converted BlockDriver IO coroutine functions
>
> include/block/block-io.h | 36 +++++++++----
> include/block/block_int-common.h | 26 ++++++----
> include/block/block_int-io.h | 5 +-
> include/sysemu/block-backend-io.h | 31 ++++++++---
> block.c | 82 ++++++++++++++++++------------
> block/blkdebug.c | 4 +-
> block/blkio.c | 6 +--
> block/blklogwrites.c | 2 +-
> block/blkreplay.c | 2 +-
> block/blkverify.c | 2 +-
> block/block-backend.c | 36 ++++++-------
> block/commit.c | 4 +-
> block/copy-on-read.c | 12 ++---
> block/crypto.c | 6 +--
> block/curl.c | 8 +--
> block/file-posix.c | 48 ++++++++---------
> block/file-win32.c | 12 ++---
> block/filter-compress.c | 10 ++--
> block/gluster.c | 16 +++---
> block/io.c | 76 +++++++++++++--------------
> block/iscsi.c | 8 +--
> block/mirror.c | 6 +--
> block/nbd.c | 6 +--
> block/nfs.c | 2 +-
> block/null.c | 8 +--
> block/nvme.c | 6 +--
> block/preallocate.c | 2 +-
> block/qcow.c | 2 +-
> block/qcow2-refcount.c | 2 +-
> block/qcow2.c | 6 +--
> block/qed.c | 4 +-
> block/quorum.c | 2 +-
> block/raw-format.c | 14 ++---
> block/rbd.c | 4 +-
> block/replication.c | 2 +-
> block/ssh.c | 2 +-
> block/throttle.c | 2 +-
> block/vdi.c | 2 +-
> block/vhdx.c | 2 +-
> block/vmdk.c | 4 +-
> block/vpc.c | 2 +-
> blockdev.c | 8 ++-
> hw/scsi/scsi-disk.c | 5 ++
> tests/unit/test-block-iothread.c | 3 ++
> scripts/block-coroutine-wrapper.py | 20 ++++++--
> block/meson.build | 1 +
> 46 files changed, 316 insertions(+), 233 deletions(-)
>
prev parent reply other threads:[~2022-12-15 12:40 UTC|newest]
Thread overview: 28+ messages / expand[flat|nested] mbox.gz Atom feed top
2022-12-13 8:53 [PATCH 00/14] block: Move more functions to coroutines Kevin Wolf
2022-12-13 8:53 ` [PATCH 01/14] block-coroutine-wrapper: support void functions Kevin Wolf
2022-12-16 14:21 ` Vladimir Sementsov-Ogievskiy
2022-12-13 8:53 ` [PATCH 02/14] block: Convert bdrv_io_plug() to co_wrapper Kevin Wolf
2022-12-16 14:26 ` Vladimir Sementsov-Ogievskiy
2022-12-19 12:24 ` Emanuele Giuseppe Esposito
2022-12-16 16:12 ` Vladimir Sementsov-Ogievskiy
2022-12-19 12:26 ` Emanuele Giuseppe Esposito
2023-01-13 15:51 ` Kevin Wolf
2022-12-13 8:53 ` [PATCH 03/14] block: Convert bdrv_io_unplug() " Kevin Wolf
2022-12-13 8:53 ` [PATCH 04/14] block: Rename refresh_total_sectors to bdrv_refresh_total_sectors Kevin Wolf
2022-12-16 16:55 ` Vladimir Sementsov-Ogievskiy
2022-12-13 8:53 ` [PATCH 05/14] block: Convert bdrv_refresh_total_sectors() to co_wrapper_mixed Kevin Wolf
2022-12-16 17:19 ` Vladimir Sementsov-Ogievskiy
2022-12-13 8:53 ` [PATCH 06/14] block-backend: use bdrv_getlength instead of blk_getlength Kevin Wolf
2022-12-16 17:22 ` Vladimir Sementsov-Ogievskiy
2022-12-19 12:28 ` Emanuele Giuseppe Esposito
2022-12-13 8:53 ` [PATCH 07/14] block: use bdrv_co_refresh_total_sectors when possible Kevin Wolf
2022-12-16 17:26 ` Vladimir Sementsov-Ogievskiy
2022-12-13 8:53 ` [PATCH 08/14] block: Convert bdrv_get_allocated_file_size() to co_wrapper Kevin Wolf
2022-12-13 8:53 ` [PATCH 09/14] block: Convert bdrv_get_info() to co_wrapper_mixed Kevin Wolf
2022-12-13 8:53 ` [PATCH 10/14] block: Convert bdrv_is_inserted() to co_wrapper Kevin Wolf
2022-12-13 8:53 ` [PATCH 11/14] block: Convert bdrv_eject() " Kevin Wolf
2022-12-13 8:53 ` [PATCH 12/14] block: convert bdrv_lock_medium in co_wrapper Kevin Wolf
2022-12-13 8:53 ` [PATCH 13/14] block: Convert bdrv_debug_event to co_wrapper_mixed Kevin Wolf
2022-12-13 8:53 ` [PATCH 14/14] block: Rename newly converted BlockDriver IO coroutine functions Kevin Wolf
2022-12-16 17:30 ` Vladimir Sementsov-Ogievskiy
2022-12-15 12:39 ` Emanuele Giuseppe Esposito [this message]
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=fa3fcc48-dd44-8274-60ff-55c253c50e30@redhat.com \
--to=eesposit@redhat.com \
--cc=hreitz@redhat.com \
--cc=kwolf@redhat.com \
--cc=pbonzini@redhat.com \
--cc=qemu-block@nongnu.org \
--cc=qemu-devel@nongnu.org \
--cc=vsementsov@yandex-team.ru \
/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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.