From: Paolo Bonzini <pbonzini@redhat.com>
To: Vitalii Mordan <mordan@ispras.ru>, Thomas Huth <thuth@redhat.com>
Cc: "Stefan Hajnoczi" <stefanha@redhat.com>,
"Philippe Mathieu-Daudé" <philmd@linaro.org>,
"Daniel P . Berrangé" <berrange@redhat.com>,
qemu-devel@nongnu.org, sdl.qemu@linuxtesting.org,
"Vadim Mutilin" <mutilin@ispras.ru>,
"Alexey Khoroshilov" <khoroshilov@ispras.ru>
Subject: Re: [PATCH] Fix data race with the state Field of ThreadPoolElement
Date: Thu, 20 Feb 2025 10:10:50 +0100 [thread overview]
Message-ID: <286270ed-cc59-4fe9-88c2-ad08798ed08a@redhat.com> (raw)
In-Reply-To: <20250219161223.3340431-1-mordan@ispras.ru>
On 2/19/25 17:12, Vitalii Mordan wrote:
> diff --git a/util/thread-pool.c b/util/thread-pool.c
> index 27eb777e85..6c5f4d085b 100644
> --- a/util/thread-pool.c
> +++ b/util/thread-pool.c
> @@ -111,9 +111,8 @@ static void *worker_thread(void *opaque)
> ret = req->func(req->arg);
>
> req->ret = ret;
> - /* Write ret before state. */
> - smp_wmb();
> - req->state = THREAD_DONE;
> + /* Atomically update state after setting ret. */
> + qatomic_store_release(&req->state, THREAD_DONE);
This is good.
> @@ -180,7 +179,7 @@ static void thread_pool_completion_bh(void *opaque)
>
> restart:
> QLIST_FOREACH_SAFE(elem, &pool->head, all, next) {
> - if (elem->state != THREAD_DONE) {
> + if (qatomic_load_acquire(&elem->state) != THREAD_DONE) {
This is good, but it needs a comment and it can replace the smp_rmb() below.
> continue;
> }
>
> @@ -223,12 +222,12 @@ static void thread_pool_cancel(BlockAIOCB *acb)
> trace_thread_pool_cancel(elem, elem->common.opaque);
>
> QEMU_LOCK_GUARD(&pool->lock);
> - if (elem->state == THREAD_QUEUED) {
> + if (qatomic_load_acquire(&elem->state) == THREAD_QUEUED) {
This is not ordering anything so it can be qatomic_read/qatomic_set
(technically the one below doesn't even need that, but it's fine).
> QTAILQ_REMOVE(&pool->request_list, elem, reqs);
> qemu_bh_schedule(pool->completion_bh);
>
> - elem->state = THREAD_DONE;
> elem->ret = -ECANCELED;
> + qatomic_store_release(&elem->state, THREAD_DONE);
> }
>
> }
> @@ -251,8 +250,8 @@ BlockAIOCB *thread_pool_submit_aio(ThreadPoolFunc *func, void *arg,
> req = qemu_aio_get(&thread_pool_aiocb_info, NULL, cb, opaque);
> req->func = func;
> req->arg = arg;
> - req->state = THREAD_QUEUED;
> req->pool = pool;
> + qatomic_store_release(&req->state, THREAD_QUEUED);
This does not need any atomic access, because there is ordering via
pool->lock (which protects the request_list). There's no need to do
store-release and load-acquire except to order with another store or
load, and in fact adding unnecessary acquire/release is harder to
understand.
Paolo
> QLIST_INSERT_HEAD(&pool->head, req, all);
>
next prev parent reply other threads:[~2025-02-20 9:11 UTC|newest]
Thread overview: 4+ messages / expand[flat|nested] mbox.gz Atom feed top
2025-02-19 16:12 [PATCH] Fix data race with the state Field of ThreadPoolElement Vitalii Mordan
2025-02-20 0:37 ` Stefan Hajnoczi
2025-02-20 9:10 ` Paolo Bonzini [this message]
2025-02-26 14:35 ` mordan
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=286270ed-cc59-4fe9-88c2-ad08798ed08a@redhat.com \
--to=pbonzini@redhat.com \
--cc=berrange@redhat.com \
--cc=khoroshilov@ispras.ru \
--cc=mordan@ispras.ru \
--cc=mutilin@ispras.ru \
--cc=philmd@linaro.org \
--cc=qemu-devel@nongnu.org \
--cc=sdl.qemu@linuxtesting.org \
--cc=stefanha@redhat.com \
--cc=thuth@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).