From: Vladimir Sementsov-Ogievskiy <vsementsov@virtuozzo.com>
To: Stefan Hajnoczi <stefanha@redhat.com>
Cc: kwolf@redhat.com, fam@euphon.net, qemu-block@nongnu.org,
qemu-devel@nongnu.org, mreitz@redhat.com, den@openvz.org
Subject: Re: [PATCH 5/9] block/io: expand in_flight inc/dec section: simple cases
Date: Wed, 22 Apr 2020 16:47:07 +0300 [thread overview]
Message-ID: <67b95ad8-2a19-5698-d683-f799c024cb01@virtuozzo.com> (raw)
In-Reply-To: <20200420162255.GE7321@stefanha-x1.localdomain>
20.04.2020 19:22, Stefan Hajnoczi wrote:
> On Wed, Apr 08, 2020 at 12:30:47PM +0300, Vladimir Sementsov-Ogievskiy wrote:
>> It's safer to expand in_flight request to start before enter to
>
> Please explain what exeactly "safer" means. If I understand correctly
> this is just a refactoring and does not fix bugs that have been hit in
> the real world.
>
> Is this just a generate attempt to avoid accidentally performing
> operations that need to happen as part of the request after the dec
> call?
Consider write.
It's possible, that qemu_coroutine_enter only schedules execution, assume such case.
Then we may possibly have the following:
1. Somehow check that we are not in drained section in outer code
2. call bdrv_pwritev(), assuming that it will increse in_flight, which will protect us from starting drained section
3. it calls bdrv_prwv_co -> bdrv_coroutine_enter (not yet increased in_flight)
4. assume coroutine not yet actually entered, only scheduled, and we go to some code, which starts drained section (as in_flight is zero)
5. scheduled coroutine starts, and blindly increases in_flight, and we are in drained section with in_flight request.
The series does the same thing for block/io.c like Kevin's "block: Fix blk->in_flight during blk_wait_while_drained()" for blk layer.
>
>> @@ -2718,17 +2746,18 @@ bdrv_co_rw_vmstate(BlockDriverState *bs, QEMUIOVector *qiov, int64_t pos,
>> ret = drv->bdrv_save_vmstate(bs, qiov, pos);
>> }
>> } else if (bs->file) {
>> - ret = bdrv_co_rw_vmstate(bs->file->bs, qiov, pos, is_read);
>> + bdrv_inc_in_flight(bs->file->bs);
>> + ret = bdrv_do_rw_vmstate(bs->file->bs, qiov, pos, is_read);
>> + bdrv_dec_in_flight(bs->file->bs);
>
> Here we inc/dec...
>
>> }
>>
>> - bdrv_dec_in_flight(bs);
>> return ret;
>> }
>>
>> static void coroutine_fn bdrv_co_rw_vmstate_entry(void *opaque)
>> {
>> BdrvVmstateCo *co = opaque;
>> - co->ret = bdrv_co_rw_vmstate(co->bs, co->qiov, co->pos, co->is_read);
>> + co->ret = bdrv_do_rw_vmstate(co->bs, co->qiov, co->pos, co->is_read);
>
> ...here we don't. The code is correct, but bdrv_co_rw_vmstate_entry()
> should also document that its caller must inc/dec.
>
>> @@ -2950,7 +2994,7 @@ static void coroutine_fn bdrv_flush_co_entry(void *opaque)
>> {
>> FlushCo *rwco = opaque;
>>
>> - rwco->ret = bdrv_co_flush(rwco->bs);
>> + rwco->ret = bdrv_do_flush(rwco->bs);
>> aio_wait_kick();
>> }
>
> This function should also document that the caller must inc/dec.
>
--
Best regards,
Vladimir
next prev parent reply other threads:[~2020-04-22 13:48 UTC|newest]
Thread overview: 27+ messages / expand[flat|nested] mbox.gz Atom feed top
2020-04-08 9:30 [PATCH for-5.0? 0/9] block/io: safer inc/dec in_flight sections Vladimir Sementsov-Ogievskiy
2020-04-08 9:30 ` [PATCH 1/9] block/io: refactor bdrv_is_allocated_above to run only one coroutine Vladimir Sementsov-Ogievskiy
2020-04-20 15:56 ` Stefan Hajnoczi
2020-04-08 9:30 ` [PATCH 2/9] block/io: refactor bdrv_co_ioctl: move aio stuff to corresponding block Vladimir Sementsov-Ogievskiy
2020-04-20 15:57 ` Stefan Hajnoczi
2020-04-08 9:30 ` [PATCH 3/9] block/io: move flush and pdiscard stuff down Vladimir Sementsov-Ogievskiy
2020-04-20 16:01 ` Stefan Hajnoczi
2020-04-08 9:30 ` [PATCH 4/9] block/io: move bdrv_rw_co_entry and friends down Vladimir Sementsov-Ogievskiy
2020-04-20 16:04 ` Stefan Hajnoczi
2020-04-27 14:11 ` Vladimir Sementsov-Ogievskiy
2020-04-08 9:30 ` [PATCH 5/9] block/io: expand in_flight inc/dec section: simple cases Vladimir Sementsov-Ogievskiy
2020-04-20 16:22 ` Stefan Hajnoczi
2020-04-22 13:47 ` Vladimir Sementsov-Ogievskiy [this message]
2020-04-22 16:06 ` Stefan Hajnoczi
2020-04-08 9:30 ` [PATCH 6/9] block/io: expand in_flight inc/dec section: block-status Vladimir Sementsov-Ogievskiy
2020-04-20 16:44 ` Stefan Hajnoczi
2020-04-08 9:30 ` [PATCH 7/9] block/io: add bdrv_do_pwrite_zeroes Vladimir Sementsov-Ogievskiy
2020-04-20 16:38 ` Stefan Hajnoczi
2020-04-08 9:30 ` [PATCH 8/9] block/io: move bdrv_make_zero under block-status Vladimir Sementsov-Ogievskiy
2020-04-20 16:40 ` Stefan Hajnoczi
2020-04-08 9:30 ` [PATCH 9/9] block/io: expand in_flight inc/dec section: bdrv_make_zero Vladimir Sementsov-Ogievskiy
2020-04-20 16:43 ` Stefan Hajnoczi
2020-04-08 10:15 ` [PATCH for-5.0? 0/9] block/io: safer inc/dec in_flight sections no-reply
2020-04-08 10:22 ` no-reply
2020-04-08 10:25 ` no-reply
2020-04-09 17:00 ` Stefan Hajnoczi
2020-04-09 18:49 ` Vladimir Sementsov-Ogievskiy
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=67b95ad8-2a19-5698-d683-f799c024cb01@virtuozzo.com \
--to=vsementsov@virtuozzo.com \
--cc=den@openvz.org \
--cc=fam@euphon.net \
--cc=kwolf@redhat.com \
--cc=mreitz@redhat.com \
--cc=qemu-block@nongnu.org \
--cc=qemu-devel@nongnu.org \
--cc=stefanha@redhat.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).