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, Wen Congyang <wencongyang2@huawei.com>,
Xie Changlong <xiechanglong.d@gmail.com>,
Markus Armbruster <armbru@redhat.com>,
qemu-devel@nongnu.org, Hanna Reitz <hreitz@redhat.com>,
Paolo Bonzini <pbonzini@redhat.com>, John Snow <jsnow@redhat.com>
Subject: Re: [PATCH v5 04/20] job.c: move inner aiocontext lock in callbacks
Date: Thu, 24 Feb 2022 10:20:05 +0100 [thread overview]
Message-ID: <50df9b3d-fa54-bbf0-9d5b-d40214dc209e@redhat.com> (raw)
In-Reply-To: <Yg5Rfyf2NvnCPAWq@stefanha-x1.localdomain>
On 17/02/2022 14:45, Stefan Hajnoczi wrote:
> On Tue, Feb 08, 2022 at 09:34:57AM -0500, Emanuele Giuseppe Esposito wrote:
>> Instead of having the lock in job_tnx_apply, move it inside
>
> s/tnx/txn/
>
>> in the callback. This will be helpful for next commits, when
>> we introduce job_lock/unlock pairs.
>>
>> job_transition_to_pending() and job_needs_finalize() do not
>> need to be protected by the aiocontext lock.
>>
>> No functional change intended.
>>
>> Signed-off-by: Emanuele Giuseppe Esposito <eesposit@redhat.com>
>> ---
>> job.c | 17 ++++++++++++-----
>> 1 file changed, 12 insertions(+), 5 deletions(-)
>
> I find this hard to review. The patch reduces the scope of the
> AioContext lock region and accesses Job in places where the AioContext
> was previously held. The commit description doesn't explain why it is
> safe to do this.
I will add this to the commit description, but in my opinion the
AioContext lock was not protecting any of the job fields in this patch.
It is only taken because the callbacks assume it is always held.
No job field in this patch is protected by the AioContext lock because
they are also read/written in functions that never take the lock.
Emanuele
>
> I may need to audit the code myself but will try reviewing a few more
> patches first to see if I get the hang of this.
>
>>
>> diff --git a/job.c b/job.c
>> index f13939d3c6..d8c13ac0d1 100644
>> --- a/job.c
>> +++ b/job.c
>> @@ -149,7 +149,6 @@ static void job_txn_del_job(Job *job)
>>
>> static int job_txn_apply(Job *job, int fn(Job *))
>> {
>> - AioContext *inner_ctx;
>> Job *other_job, *next;
>> JobTxn *txn = job->txn;
>> int rc = 0;
>> @@ -164,10 +163,7 @@ static int job_txn_apply(Job *job, int fn(Job *))
>> aio_context_release(job->aio_context);
>>
>> QLIST_FOREACH_SAFE(other_job, &txn->jobs, txn_list, next) {
>> - inner_ctx = other_job->aio_context;
>> - aio_context_acquire(inner_ctx);
>> rc = fn(other_job);
>> - aio_context_release(inner_ctx);
>> if (rc) {
>> break;
>> }
>> @@ -717,11 +713,15 @@ static void job_clean(Job *job)
>>
>> static int job_finalize_single(Job *job)
>> {
>> + AioContext *ctx = job->aio_context;
>> +
>> assert(job_is_completed(job));
>>
>> /* Ensure abort is called for late-transactional failures */
>> job_update_rc(job);
>>
>> + aio_context_acquire(ctx);
>> +
>> if (!job->ret) {
>> job_commit(job);
>> } else {
>> @@ -729,6 +729,8 @@ static int job_finalize_single(Job *job)
>> }
>> job_clean(job);
>>
>> + aio_context_release(ctx);
>> +
>> if (job->cb) {
>> job->cb(job->opaque, job->ret);
>> }
>> @@ -833,8 +835,8 @@ static void job_completed_txn_abort(Job *job)
>> assert(job_cancel_requested(other_job));
>> job_finish_sync(other_job, NULL, NULL);
>> }
>> - job_finalize_single(other_job);
>> aio_context_release(ctx);
>> + job_finalize_single(other_job);
>> }
>>
>> /*
>> @@ -849,11 +851,16 @@ static void job_completed_txn_abort(Job *job)
>>
>> static int job_prepare(Job *job)
>> {
>> + AioContext *ctx = job->aio_context;
>> assert(qemu_in_main_thread());
>> +
>> if (job->ret == 0 && job->driver->prepare) {
>> + aio_context_acquire(ctx);
>> job->ret = job->driver->prepare(job);
>> + aio_context_release(ctx);
>> job_update_rc(job);
>> }
>> +
>> return job->ret;
>> }
>>
>> --
>> 2.31.1
>>
next prev parent reply other threads:[~2022-02-24 9:25 UTC|newest]
Thread overview: 49+ messages / expand[flat|nested] mbox.gz Atom feed top
2022-02-08 14:34 [PATCH v5 00/20] job: replace AioContext lock with job_mutex Emanuele Giuseppe Esposito
2022-02-08 14:34 ` [PATCH v5 01/20] job.c: make job_mutex and job_lock/unlock() public Emanuele Giuseppe Esposito
2022-02-10 15:38 ` Stefan Hajnoczi
2022-02-08 14:34 ` [PATCH v5 02/20] job.h: categorize fields in struct Job Emanuele Giuseppe Esposito
2022-02-10 15:40 ` Stefan Hajnoczi
2022-02-10 16:26 ` Emanuele Giuseppe Esposito
2022-02-10 17:35 ` Stefan Hajnoczi
2022-02-11 9:00 ` Emanuele Giuseppe Esposito
2022-02-08 14:34 ` [PATCH v5 03/20] job.c: API functions not used outside should be static Emanuele Giuseppe Esposito
2022-02-10 15:43 ` Stefan Hajnoczi
2022-02-08 14:34 ` [PATCH v5 04/20] job.c: move inner aiocontext lock in callbacks Emanuele Giuseppe Esposito
2022-02-17 13:45 ` Stefan Hajnoczi
2022-02-24 9:20 ` Emanuele Giuseppe Esposito [this message]
2022-02-24 9:29 ` Emanuele Giuseppe Esposito
2022-02-08 14:34 ` [PATCH v5 05/20] aio-wait.h: introduce AIO_WAIT_WHILE_UNLOCKED Emanuele Giuseppe Esposito
2022-02-17 13:56 ` Stefan Hajnoczi
2022-02-08 14:34 ` [PATCH v5 06/20] jobs: remove aiocontext locks since the functions are under BQL Emanuele Giuseppe Esposito
2022-02-17 14:12 ` Stefan Hajnoczi
2022-02-24 9:27 ` Emanuele Giuseppe Esposito
2022-02-08 14:35 ` [PATCH v5 07/20] job.h: add _locked duplicates for job API functions called with and without job_mutex Emanuele Giuseppe Esposito
2022-02-17 14:20 ` Stefan Hajnoczi
2022-02-24 9:52 ` Emanuele Giuseppe Esposito
2022-02-08 14:35 ` [PATCH v5 08/20] jobs: protect jobs with job_lock/unlock Emanuele Giuseppe Esposito
2022-02-17 14:48 ` Stefan Hajnoczi
2022-02-24 12:45 ` Emanuele Giuseppe Esposito
2022-02-24 16:48 ` Stefan Hajnoczi
2022-02-24 16:55 ` Emanuele Giuseppe Esposito
2022-02-08 14:35 ` [PATCH v5 09/20] jobs: add job lock in find_* functions Emanuele Giuseppe Esposito
2022-02-17 15:00 ` Stefan Hajnoczi
2022-02-24 12:36 ` Emanuele Giuseppe Esposito
2022-02-08 14:35 ` [PATCH v5 10/20] jobs: use job locks also in the unit tests Emanuele Giuseppe Esposito
2022-02-08 14:35 ` [PATCH v5 11/20] block/mirror.c: use of job helpers in drivers to avoid TOC/TOU Emanuele Giuseppe Esposito
2022-02-17 16:53 ` Stefan Hajnoczi
2022-02-08 14:35 ` [PATCH v5 12/20] jobs: rename static functions called with job_mutex held Emanuele Giuseppe Esposito
2022-02-08 14:35 ` [PATCH v5 13/20] job.h: rename job API " Emanuele Giuseppe Esposito
2022-02-08 14:35 ` [PATCH v5 14/20] block_job: rename block_job " Emanuele Giuseppe Esposito
2022-02-08 14:35 ` [PATCH v5 15/20] job.h: define unlocked functions Emanuele Giuseppe Esposito
2022-02-08 14:35 ` [PATCH v5 16/20] commit and mirror: create new nodes using bdrv_get_aio_context, and not the job aiocontext Emanuele Giuseppe Esposito
2022-03-08 11:13 ` Stefan Hajnoczi
2022-02-08 14:35 ` [PATCH v5 17/20] job: detect change of aiocontext within job coroutine Emanuele Giuseppe Esposito
2022-03-08 11:19 ` Stefan Hajnoczi
2022-02-08 14:35 ` [PATCH v5 18/20] jobs: protect job.aio_context with BQL and job_mutex Emanuele Giuseppe Esposito
2022-03-08 13:41 ` Stefan Hajnoczi
2022-03-10 10:09 ` Emanuele Giuseppe Esposito
2022-02-08 14:35 ` [PATCH v5 19/20] job.c: enable job lock/unlock and remove Aiocontext locks Emanuele Giuseppe Esposito
2022-03-08 14:04 ` Stefan Hajnoczi
2022-03-10 10:25 ` Emanuele Giuseppe Esposito
2022-02-08 14:35 ` [PATCH v5 20/20] block_job_query: remove atomic read Emanuele Giuseppe Esposito
2022-03-08 14:06 ` Stefan Hajnoczi
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=50df9b3d-fa54-bbf0-9d5b-d40214dc209e@redhat.com \
--to=eesposit@redhat.com \
--cc=armbru@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 \
--cc=wencongyang2@huawei.com \
--cc=xiechanglong.d@gmail.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).