From: "Philippe Mathieu-Daudé" <philmd@redhat.com>
To: Eric Blake <eblake@redhat.com>, Kevin Wolf <kwolf@redhat.com>,
qemu-block@nongnu.org
Cc: Vladimir Sementsov-Ogievskiy <vsementsov@virtuozzo.com>,
qemu-devel@nongnu.org, s.reiter@proxmox.com, armbru@redhat.com,
mreitz@redhat.com, stefanha@redhat.com, t.lamprecht@proxmox.com
Subject: Re: [RFC PATCH 1/3] block: Factor out bdrv_run_co()
Date: Wed, 20 May 2020 11:09:19 +0200 [thread overview]
Message-ID: <bb50696f-4680-ca07-4e4f-bcbe1e5c2468@redhat.com> (raw)
In-Reply-To: <5f019ab2-076f-4537-9138-9ed93484a727@redhat.com>
On 5/12/20 5:37 PM, Eric Blake wrote:
> On 5/12/20 9:43 AM, Kevin Wolf wrote:
>> We have a few bdrv_*() functions that can either spawn a new coroutine
>> and wait for it with BDRV_POLL_WHILE() or use a fastpath if they are
>> alreeady running in a coroutine. All of them duplicate basically the
>
> already
>
>> same code.
>>
>> Factor the common code into a new function bdrv_run_co().
>>
>> Signed-off-by: Kevin Wolf <kwolf@redhat.com>
>> ---
>> block/io.c | 104 +++++++++++++++--------------------------------------
>> 1 file changed, 28 insertions(+), 76 deletions(-)
>>
>> diff --git a/block/io.c b/block/io.c
>> index 7d30e61edc..c1badaadc9 100644
>> --- a/block/io.c
>> +++ b/block/io.c
>> @@ -891,6 +891,22 @@ static int
>> bdrv_check_byte_request(BlockDriverState *bs, int64_t offset,
>> return 0;
>> }
>> +static int bdrv_run_co(BlockDriverState *bs, CoroutineEntry *entry,
>> + void *opaque, int *ret)
>> +{
>> + if (qemu_in_coroutine()) {
>> + /* Fast-path if already in coroutine context */
>> + entry(opaque);
>> + } else {
>> + Coroutine *co = qemu_coroutine_create(entry, opaque);
>> + *ret = NOT_DONE;
>> + bdrv_coroutine_enter(bs, co);
>> + BDRV_POLL_WHILE(bs, *ret == NOT_DONE);
>
> For my reference, NOT_DONE is defined as INT_MAX, which does not seem to
> be used as a return value in other situations.
>
>> @@ -923,25 +939,15 @@ static int bdrv_prwv_co(BdrvChild *child,
>> int64_t offset,
>> QEMUIOVector *qiov, bool is_write,
>> BdrvRequestFlags flags)
>> {
>> - Coroutine *co;
>> RwCo rwco = {
>> .child = child,
>> .offset = offset,
>> .qiov = qiov,
>> .is_write = is_write,
>> - .ret = NOT_DONE,
>> .flags = flags,
>> };
>> - if (qemu_in_coroutine()) {
>> - /* Fast-path if already in coroutine context */
>> - bdrv_rw_co_entry(&rwco);
>> - } else {
>> - co = qemu_coroutine_create(bdrv_rw_co_entry, &rwco);
>> - bdrv_coroutine_enter(child->bs, co);
>> - BDRV_POLL_WHILE(child->bs, rwco.ret == NOT_DONE);
>> - }
>> - return rwco.ret;
>> + return bdrv_run_co(child->bs, bdrv_rw_co_entry, &rwco, &rwco.ret);
>
> So code that previously looped on NOT_DONE is obviously safe, while...
>
>> }
>> int bdrv_pwrite_zeroes(BdrvChild *child, int64_t offset,
>> @@ -2230,7 +2236,6 @@ typedef struct BdrvCoBlockStatusData {
>> int64_t *map;
>> BlockDriverState **file;
>> int ret;
>> - bool done;
>> } BdrvCoBlockStatusData;
>> int coroutine_fn bdrv_co_block_status_from_file(BlockDriverState *bs,
>> @@ -2492,7 +2497,6 @@ static void coroutine_fn
>> bdrv_block_status_above_co_entry(void *opaque)
>> data->want_zero,
>> data->offset, data->bytes,
>> data->pnum, data->map,
>> data->file);
>> - data->done = true;
>> aio_wait_kick();
>
> ...code that looped on something else now has to be checked that
> data->ret is still being set to something useful. Fortunately that is
> true here.
>
>> @@ -2669,22 +2663,13 @@ static inline int
>> bdrv_rw_vmstate(BlockDriverState *bs, QEMUIOVector *qiov, int64_t pos,
>> bool is_read)
>> {
>> - if (qemu_in_coroutine()) {
>> - return bdrv_co_rw_vmstate(bs, qiov, pos, is_read);
>> - } else {
>> - BdrvVmstateCo data = {
>> - .bs = bs,
>> - .qiov = qiov,
>> - .pos = pos,
>> - .is_read = is_read,
>> - .ret = -EINPROGRESS,
>> - };
>> - Coroutine *co =
>> qemu_coroutine_create(bdrv_co_rw_vmstate_entry, &data);
>> -
>> - bdrv_coroutine_enter(bs, co);
>> - BDRV_POLL_WHILE(bs, data.ret == -EINPROGRESS);
>> - return data.ret;
>
> It's a little harder to see whether -EINPROGRESS might ever be returned
> by a driver, but again this looks safe.
Maybe add a comment regarding -EINPROGRESS before calling bdrv_run_co()
in bdrv_rw_vmstate()?
Reviewed-by: Philippe Mathieu-Daudé <philmd@redhat.com>
>
> Here, it's a little less obvious whether any driver might return
> -EINPROGRESS, but it looks like if they did that,
>
> Reviewed-by: Eric Blake <eblake@redhat.com>
>
> Conflicts with Vladimir's patches which try to add more coroutine
> wrappers (but those need a rebase anyway):
> https://lists.gnu.org/archive/html/qemu-devel/2020-04/msg04559.html
>
next prev parent reply other threads:[~2020-05-20 9:13 UTC|newest]
Thread overview: 26+ messages / expand[flat|nested] mbox.gz Atom feed top
2020-05-12 14:43 [RFC PATCH 0/3] block: Synchronous bdrv_*() from coroutine in different AioContext Kevin Wolf
2020-05-12 14:43 ` [RFC PATCH 1/3] block: Factor out bdrv_run_co() Kevin Wolf
2020-05-12 15:37 ` Eric Blake
2020-05-20 9:09 ` Philippe Mathieu-Daudé [this message]
2020-05-20 11:14 ` Vladimir Sementsov-Ogievskiy
2020-05-12 14:43 ` [RFC PATCH 2/3] block: Allow bdrv_run_co() from different AioContext Kevin Wolf
2020-05-12 16:02 ` Thomas Lamprecht
2020-05-12 19:29 ` Kevin Wolf
2020-05-25 14:18 ` Stefan Reiter
2020-05-25 16:41 ` Kevin Wolf
2020-05-26 16:42 ` Kevin Wolf
2020-05-27 8:56 ` Stefan Reiter
2020-05-12 14:43 ` [RFC PATCH 3/3] block: Assert we're running in the right thread Kevin Wolf
2020-05-14 13:52 ` Stefan Reiter
2020-05-14 14:30 ` Kevin Wolf
2020-05-20 9:12 ` Philippe Mathieu-Daudé
2020-05-14 13:21 ` [RFC PATCH 0/3] block: Synchronous bdrv_*() from coroutine in different AioContext Thomas Lamprecht
2020-05-14 14:26 ` Kevin Wolf
2020-05-19 12:32 ` Vladimir Sementsov-Ogievskiy
2020-05-19 13:54 ` Denis Plotnikov
2020-05-19 14:18 ` Kevin Wolf
2020-05-19 15:05 ` Denis Plotnikov
2020-05-19 15:29 ` Kevin Wolf
2020-05-19 15:48 ` Vladimir Sementsov-Ogievskiy
2020-05-19 16:06 ` Eric Blake
2020-05-20 7:23 ` Denis Plotnikov
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=bb50696f-4680-ca07-4e4f-bcbe1e5c2468@redhat.com \
--to=philmd@redhat.com \
--cc=armbru@redhat.com \
--cc=eblake@redhat.com \
--cc=kwolf@redhat.com \
--cc=mreitz@redhat.com \
--cc=qemu-block@nongnu.org \
--cc=qemu-devel@nongnu.org \
--cc=s.reiter@proxmox.com \
--cc=stefanha@redhat.com \
--cc=t.lamprecht@proxmox.com \
--cc=vsementsov@virtuozzo.com \
/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).