From: Song Liu <song@kernel.org>
To: Uros Bizjak <ubizjak@gmail.com>
Cc: linux-raid@vger.kernel.org, linux-kernel@vger.kernel.org
Subject: Re: [PATCH v2] raid5-cache: use try_cmpxchg in r5l_wake_reclaim
Date: Thu, 20 Oct 2022 11:09:25 -0700 [thread overview]
Message-ID: <CAPhsuW4z+ttCn6zUWwz+QB_+Ddfo0YDDqLxWeTHLLuXHSDoeEQ@mail.gmail.com> (raw)
In-Reply-To: <20221020155104.9485-1-ubizjak@gmail.com>
On Thu, Oct 20, 2022 at 8:51 AM Uros Bizjak <ubizjak@gmail.com> wrote:
>
> Use try_cmpxchg instead of cmpxchg (*ptr, old, new) == old in
> r5l_wake_reclaim. 86 CMPXCHG instruction returns success in ZF flag, so
> this change saves a compare after cmpxchg (and related move instruction in
> front of cmpxchg).
>
> Also, try_cmpxchg implicitly assigns old *ptr value to "old" when cmpxchg
> fails. There is no need to re-read the value in the loop.
>
> Note that the value from *ptr should be read using READ_ONCE to prevent
> the compiler from merging, refetching or reordering the read.
>
> No functional change intended.
>
> Cc: Song Liu <song@kernel.org>
> Signed-off-by: Uros Bizjak <ubizjak@gmail.com>
Applied to md-next. Thanks!
Song
> ---
> v2: Fix garbled subject line
> ---
> drivers/md/raid5-cache.c | 5 +++--
> 1 file changed, 3 insertions(+), 2 deletions(-)
>
> diff --git a/drivers/md/raid5-cache.c b/drivers/md/raid5-cache.c
> index 832d8566e165..a63023aae21e 100644
> --- a/drivers/md/raid5-cache.c
> +++ b/drivers/md/raid5-cache.c
> @@ -1565,11 +1565,12 @@ void r5l_wake_reclaim(struct r5l_log *log, sector_t space)
>
> if (!log)
> return;
> +
> + target = READ_ONCE(log->reclaim_target);
> do {
> - target = log->reclaim_target;
> if (new < target)
> return;
> - } while (cmpxchg(&log->reclaim_target, target, new) != target);
> + } while (!try_cmpxchg(&log->reclaim_target, &target, new));
> md_wakeup_thread(log->reclaim_thread);
> }
>
> --
> 2.37.3
>
prev parent reply other threads:[~2022-10-20 18:10 UTC|newest]
Thread overview: 2+ messages / expand[flat|nested] mbox.gz Atom feed top
2022-10-20 15:51 [PATCH v2] raid5-cache: use try_cmpxchg in r5l_wake_reclaim Uros Bizjak
2022-10-20 18:09 ` Song Liu [this message]
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=CAPhsuW4z+ttCn6zUWwz+QB_+Ddfo0YDDqLxWeTHLLuXHSDoeEQ@mail.gmail.com \
--to=song@kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-raid@vger.kernel.org \
--cc=ubizjak@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).