From: Kevin Wolf <kwolf@redhat.com>
To: Paolo Bonzini <pbonzini@redhat.com>
Cc: Emanuele Giuseppe Esposito <eesposit@redhat.com>,
qemu-devel@nongnu.org, qemu-block@nongnu.org
Subject: Re: [RFC PATCH] test-bdrv-drain: keep graph manipulations out of coroutines
Date: Mon, 5 Dec 2022 14:01:21 +0100 [thread overview]
Message-ID: <Y43roVjI2RrU1PXq@redhat.com> (raw)
In-Reply-To: <eee6b6e6-e62c-0d87-1f98-913b4b194a1a@redhat.com>
Am 02.12.2022 um 18:22 hat Paolo Bonzini geschrieben:
> On 12/2/22 14:42, Emanuele Giuseppe Esposito wrote:
> >
> >
> > Am 02/12/2022 um 14:27 schrieb Paolo Bonzini:
> > > Changes to the BlockDriverState graph will have to take the
> > > corresponding lock for writing, and therefore cannot be done
> > > inside a coroutine. Move them outside the test body.
> > >
> > > Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
> > > ---
> > > tests/unit/test-bdrv-drain.c | 63 ++++++++++++++++++++++++++----------
> > > 1 file changed, 46 insertions(+), 17 deletions(-)
> > >
> > > diff --git a/tests/unit/test-bdrv-drain.c b/tests/unit/test-bdrv-drain.c
> > > index 6ae44116fe79..d85083dd4f9e 100644
> > > --- a/tests/unit/test-bdrv-drain.c
> > > +++ b/tests/unit/test-bdrv-drain.c
> > > @@ -199,25 +199,40 @@ static void do_drain_end_unlocked(enum drain_type drain_type, BlockDriverState *
> > > }
> > > }
> > > +static BlockBackend *blk;
> > > +static BlockDriverState *bs, *backing;
> > > +
> > > +static void test_drv_cb_init(void)
> > > +{
> > > + blk = blk_new(qemu_get_aio_context(), BLK_PERM_ALL, BLK_PERM_ALL);
> > > + bs = bdrv_new_open_driver(&bdrv_test, "test-node", BDRV_O_RDWR,
> > > + &error_abort);
> > > + blk_insert_bs(blk, bs, &error_abort);
> > > +
> > > + backing = bdrv_new_open_driver(&bdrv_test, "backing", 0, &error_abort);
> > > + bdrv_set_backing_hd(bs, backing, &error_abort);
> > > +}
> > > +
> > > +static void test_drv_cb_fini(void)
> >
> > fini stands for "finito"? :)
>
> No, for finish :)
> http://ftp.math.utah.edu/u/ma/hohn/linux/misc/elf/node3.html
>
> > Anyways, an alternative solution for this is also here (probably coming
> > from you too):
> > https://lists.nongnu.org/archive/html/qemu-devel/2022-03/msg03517.html
>
> Much better. At least patches 7-8 from that series have to be salvaged,
> possibly 10 as well.
I wonder if we need a more general solution for this because this test
is not the only place that calls this kind of functions in a coroutine.
The one I'm aware of in particular is all the .bdrv_co_create
implementations, but I'm almost sure there are more.
Can we use a yield_to_drain()-like mechanism for these functions? Maybe
even something like the opposite of co_wrapper, a no_co_wrapper that
generates a foo_co() variant that drops out of coroutine context before
calling foo()?
Kevin
next prev parent reply other threads:[~2022-12-05 13:02 UTC|newest]
Thread overview: 8+ messages / expand[flat|nested] mbox.gz Atom feed top
2022-12-02 13:27 [RFC PATCH] test-bdrv-drain: keep graph manipulations out of coroutines Paolo Bonzini
2022-12-02 13:42 ` Emanuele Giuseppe Esposito
2022-12-02 17:22 ` Paolo Bonzini
2022-12-05 12:36 ` Emanuele Giuseppe Esposito
2022-12-05 13:01 ` Kevin Wolf [this message]
2022-12-09 12:18 ` Emanuele Giuseppe Esposito
2022-12-09 12:20 ` Emanuele Giuseppe Esposito
2022-12-09 19:34 ` Kevin Wolf
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=Y43roVjI2RrU1PXq@redhat.com \
--to=kwolf@redhat.com \
--cc=eesposit@redhat.com \
--cc=pbonzini@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 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.