From: Emanuele Giuseppe Esposito <eesposit@redhat.com>
To: Stefan Hajnoczi <stefanha@redhat.com>
Cc: Kevin Wolf <kwolf@redhat.com>, Fam Zheng <fam@euphon.net>,
Vladimir Sementsov-Ogievskiy <vsementsov@virtuozzo.com>,
qemu-block@nongnu.org, qemu-devel@nongnu.org,
Hanna Reitz <hreitz@redhat.com>,
Paolo Bonzini <pbonzini@redhat.com>, John Snow <jsnow@redhat.com>
Subject: Re: [PATCH 4/6] test-bdrv-drain.c: adapt test to the coming subtree drains
Date: Thu, 10 Feb 2022 17:02:30 +0100 [thread overview]
Message-ID: <f6edf47b-b80c-0a93-ebc9-4fbea904d8a3@redhat.com> (raw)
In-Reply-To: <YgUiANhIRFEos9L8@stefanha-x1.localdomain>
On 10/02/2022 15:32, Stefan Hajnoczi wrote:
> On Tue, Feb 08, 2022 at 10:36:53AM -0500, Emanuele Giuseppe Esposito wrote:
>> There will be 2 problems in this test when we will add
>> subtree drains in bdrv_replace_child_noperm:
>>
>> - First, the test is inconsistent about taking the AioContext lock when
>> calling bdrv_replace_child_noperm. bdrv_replace_child_noperm is reached
>> in two places: from blk_insert_bs directly, and via block_job_create.
>> Only the second does it with the AioContext lock taken, and there seems
>> to be no reason why the lock is needed.
>> Move aio_context_acquire further down, to just protect block_job_add_bdrv()
>>
>> - Second, test_detach_indirect is only interested in observing the first
>> call to .drained_begin. In the original test, there was only a single
>> subtree drain; however, with additional drains introduced in
>> bdrv_replace_child_noperm(), the test callback would be called too early
>> and/or multiple times.
>> Override the callback only when we actually want to use it, and put back
>> the original after it's been invoked.
>>
>> Signed-off-by: Emanuele Giuseppe Esposito <eesposit@redhat.com>
>> ---
>> tests/unit/test-bdrv-drain.c | 17 ++++++++++++-----
>> 1 file changed, 12 insertions(+), 5 deletions(-)
>>
>> diff --git a/tests/unit/test-bdrv-drain.c b/tests/unit/test-bdrv-drain.c
>> index 4924ceb562..c52ba2db4e 100644
>> --- a/tests/unit/test-bdrv-drain.c
>> +++ b/tests/unit/test-bdrv-drain.c
>> @@ -912,12 +912,12 @@ static void test_blockjob_common_drain_node(enum drain_type drain_type,
>> blk_insert_bs(blk_target, target, &error_abort);
>> blk_set_allow_aio_context_change(blk_target, true);
>>
>> - aio_context_acquire(ctx);
>> tjob = block_job_create("job0", &test_job_driver, NULL, src,
>> 0, BLK_PERM_ALL,
>> 0, 0, NULL, NULL, &error_abort);
>> tjob->bs = src;
>> job = &tjob->common;
>> + aio_context_acquire(ctx);
>
> block_job_create() uses src's AioContext. In the IOThread case the
> AioContext is not qemu_aio_context. My expectation is that src's
> AioContext must be acquired before block_job_create() starts using src.
>
> blockdev.c QMP commands acquire the BDS's AioContext before calling the
> function that creates the job. It seems strange to do it differently in
> this test case.
>
> You mentioned that blk_insert_bs() is called without acquiring an
> AioContext. That may be because we know blk_target is in
> qemu_aio_context and we assume our thread holds it (even if we don't
> explicitly hold it).
This is an assumption done in all unit tests, so it's not worth changing
only this case.
If you want to fix an inconsistency then maybe fix
> that instead of removing the acquire around block_job_create()?
Your explanation above makes sense, I think I will drop this change here.
Thank you,
Emanuele
next prev parent reply other threads:[~2022-02-10 19:08 UTC|newest]
Thread overview: 28+ messages / expand[flat|nested] mbox.gz Atom feed top
2022-02-08 15:36 [PATCH 0/6] block: bug fixes in preparation of AioContext removal Emanuele Giuseppe Esposito
2022-02-08 15:36 ` [PATCH 1/6] block/io.c: fix bdrv_child_cb_drained_begin invocations from a coroutine Emanuele Giuseppe Esposito
2022-02-10 14:14 ` Stefan Hajnoczi
2022-02-11 11:54 ` Kevin Wolf
2022-02-14 10:27 ` Emanuele Giuseppe Esposito
2022-02-14 11:57 ` Paolo Bonzini
2022-02-17 15:49 ` Emanuele Giuseppe Esposito
2022-02-14 12:03 ` Kevin Wolf
2022-02-08 15:36 ` [PATCH 2/6] block.c: bdrv_replace_child_noperm: first remove the child, and then call ->detach() Emanuele Giuseppe Esposito
2022-02-10 14:16 ` Stefan Hajnoczi
2022-02-11 12:28 ` Kevin Wolf
2022-02-08 15:36 ` [PATCH 3/6] block.c: bdrv_replace_child_noperm: first call ->attach(), and then add child Emanuele Giuseppe Esposito
2022-02-10 14:16 ` Stefan Hajnoczi
2022-02-11 12:34 ` Kevin Wolf
2022-02-14 10:37 ` Emanuele Giuseppe Esposito
2022-02-08 15:36 ` [PATCH 4/6] test-bdrv-drain.c: adapt test to the coming subtree drains Emanuele Giuseppe Esposito
2022-02-10 14:32 ` Stefan Hajnoczi
2022-02-10 16:02 ` Emanuele Giuseppe Esposito [this message]
2022-02-08 15:36 ` [PATCH 5/6] test-bdrv-drain.c: remove test_detach_by_parent_cb() Emanuele Giuseppe Esposito
2022-02-10 14:33 ` Stefan Hajnoczi
2022-02-11 15:38 ` Kevin Wolf
2022-02-14 11:11 ` Emanuele Giuseppe Esposito
2022-02-14 11:42 ` Paolo Bonzini
2022-02-14 15:28 ` Kevin Wolf
2022-02-14 17:39 ` Paolo Bonzini
2022-02-08 15:36 ` [PATCH 6/6] jobs: ensure sleep in job_sleep_ns is fully performed Emanuele Giuseppe Esposito
2022-02-10 14:43 ` Stefan Hajnoczi
2022-02-10 15:02 ` 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=f6edf47b-b80c-0a93-ebc9-4fbea904d8a3@redhat.com \
--to=eesposit@redhat.com \
--cc=fam@euphon.net \
--cc=hreitz@redhat.com \
--cc=jsnow@redhat.com \
--cc=kwolf@redhat.com \
--cc=pbonzini@redhat.com \
--cc=qemu-block@nongnu.org \
--cc=qemu-devel@nongnu.org \
--cc=stefanha@redhat.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).