From: Kevin Wolf <kwolf@redhat.com>
To: Sergio Lopez <slp@redhat.com>
Cc: Stefan Hajnoczi <stefanha@redhat.com>,
qemu-devel@nongnu.org, qemu-block@nongnu.org,
Max Reitz <mreitz@redhat.com>
Subject: Re: [PATCH 1/2] virtio-blk: Acquire context while switching them on dataplane start
Date: Wed, 9 Dec 2020 18:29:41 +0100 [thread overview]
Message-ID: <20201209172941.GA6660@merkur.fritz.box> (raw)
In-Reply-To: <20201209165112.o46ommtx2xab7lg2@mhamilton>
[-- Attachment #1: Type: text/plain, Size: 2105 bytes --]
Am 09.12.2020 um 17:51 hat Sergio Lopez geschrieben:
> On Mon, Dec 07, 2020 at 04:37:53PM +0100, Kevin Wolf wrote:
> > Am 04.12.2020 um 17:53 hat Sergio Lopez geschrieben:
> > > On dataplane start, acquire the new AIO context before calling
> > > 'blk_set_aio_context', releasing it immediately afterwards. This
> > > prevents reaching the AIO context attach/detach notifier functions
> > > without having acquired it first.
> > >
> > > It was also the only place where 'blk_set_aio_context' was called with
> > > an unprotected AIO context.
> > >
> > > Signed-off-by: Sergio Lopez <slp@redhat.com>
> > > ---
> > > hw/block/dataplane/virtio-blk.c | 2 ++
> > > 1 file changed, 2 insertions(+)
> > >
> > > diff --git a/hw/block/dataplane/virtio-blk.c b/hw/block/dataplane/virtio-blk.c
> > > index 37499c5564..034e43cb1f 100644
> > > --- a/hw/block/dataplane/virtio-blk.c
> > > +++ b/hw/block/dataplane/virtio-blk.c
> > > @@ -214,7 +214,9 @@ int virtio_blk_data_plane_start(VirtIODevice *vdev)
> > > vblk->dataplane_started = true;
> > > trace_virtio_blk_data_plane_start(s);
> > >
> > > + aio_context_acquire(s->ctx);
> > > r = blk_set_aio_context(s->conf->conf.blk, s->ctx, &local_err);
> > > + aio_context_release(s->ctx);
> >
> > bdrv_set_aio_context_ignore() is documented like this:
> >
> > * The caller must own the AioContext lock for the old AioContext of bs, but it
> > * must not own the AioContext lock for new_context (unless new_context is the
> > * same as the current context of bs).
>
> Does that rule apply to blk_set_aio_context too?
bdrv_set_aio_context_ignore() is what blk_set_aio_context() calls, so I
would say yes.
> All use cases I can find in the code are acquiring the new context:
> [...]
Hm... That's unfortunate.
I think the reason why you shouldn't hold it is that the
bdrv_drained_begin() call in bdrv_set_aio_context_ignore() could
deadlock if you hold the lock of a context that is not the current
context of the BlockDriverState.
Maybe there are more reasons, I'm not sure.
Kevin
[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 833 bytes --]
next prev parent reply other threads:[~2020-12-09 17:41 UTC|newest]
Thread overview: 8+ messages / expand[flat|nested] mbox.gz Atom feed top
[not found] <20201204165347.73542-1-slp@redhat.com>
2020-12-04 16:53 ` [PATCH 1/2] virtio-blk: Acquire context while switching them on dataplane start Sergio Lopez
2020-12-04 17:01 ` Eric Blake
2020-12-07 15:37 ` Kevin Wolf
2020-12-09 16:51 ` Sergio Lopez
2020-12-09 17:29 ` Kevin Wolf [this message]
2020-12-04 16:53 ` [PATCH 2/2] nbd/server: Quiesce coroutines on context switch Sergio Lopez
2020-12-04 18:39 ` Eric Blake
2020-12-09 17:31 ` Sergio Lopez
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=20201209172941.GA6660@merkur.fritz.box \
--to=kwolf@redhat.com \
--cc=mreitz@redhat.com \
--cc=qemu-block@nongnu.org \
--cc=qemu-devel@nongnu.org \
--cc=slp@redhat.com \
--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).