LKML Archive on lore.kernel.org
help / color / mirror / Atom feed
* [PATCH 1/1] sbitmap: Replace cmpxchg with xchg
@ 2019-05-23 15:39 Pavel Begunkov (Silence)
2019-06-29 15:42 ` Pavel Begunkov
2019-07-01 19:44 ` Jens Axboe
0 siblings, 2 replies; 5+ messages in thread
From: Pavel Begunkov (Silence) @ 2019-05-23 15:39 UTC (permalink / raw)
To: Jens Axboe, linux-block, linux-kernel; +Cc: Pavel Begunkov
From: Pavel Begunkov <asml.silence@gmail.com>
cmpxchg() with an immediate value could be replaced with less expensive
xchg(). The same true if new value don't _depend_ on the old one.
In the second block, atomic_cmpxchg() return value isn't checked, so
after atomic_cmpxchg() -> atomic_xchg() conversion it could be replaced
with atomic_set(). Comparison with atomic_read() in the second chunk was
left as an optimisation (if that was the initial intention).
Signed-off-by: Pavel Begunkov <asml.silence@gmail.com>
---
lib/sbitmap.c | 10 +++-------
1 file changed, 3 insertions(+), 7 deletions(-)
diff --git a/lib/sbitmap.c b/lib/sbitmap.c
index 155fe38756ec..7d7e0e278523 100644
--- a/lib/sbitmap.c
+++ b/lib/sbitmap.c
@@ -37,9 +37,7 @@ static inline bool sbitmap_deferred_clear(struct sbitmap *sb, int index)
/*
* First get a stable cleared mask, setting the old mask to 0.
*/
- do {
- mask = sb->map[index].cleared;
- } while (cmpxchg(&sb->map[index].cleared, mask, 0) != mask);
+ mask = xchg(&sb->map[index].cleared, 0);
/*
* Now clear the masked bits in our free word
@@ -527,10 +525,8 @@ static struct sbq_wait_state *sbq_wake_ptr(struct sbitmap_queue *sbq)
struct sbq_wait_state *ws = &sbq->ws[wake_index];
if (waitqueue_active(&ws->wait)) {
- int o = atomic_read(&sbq->wake_index);
-
- if (wake_index != o)
- atomic_cmpxchg(&sbq->wake_index, o, wake_index);
+ if (wake_index != atomic_read(&sbq->wake_index))
+ atomic_set(&sbq->wake_index, wake_index);
return ws;
}
--
2.21.0
^ permalink raw reply related [flat|nested] 5+ messages in thread
* Re: [PATCH 1/1] sbitmap: Replace cmpxchg with xchg
2019-05-23 15:39 [PATCH 1/1] sbitmap: Replace cmpxchg with xchg Pavel Begunkov (Silence)
@ 2019-06-29 15:42 ` Pavel Begunkov
2019-06-29 15:51 ` Jens Axboe
2019-07-01 17:35 ` Omar Sandoval
2019-07-01 19:44 ` Jens Axboe
1 sibling, 2 replies; 5+ messages in thread
From: Pavel Begunkov @ 2019-06-29 15:42 UTC (permalink / raw)
To: Jens Axboe, osandov, linux-block, linux-kernel
[-- Attachment #1.1: Type: text/plain, Size: 1764 bytes --]
Ping?
On 23/05/2019 08:39, Pavel Begunkov (Silence) wrote:
> From: Pavel Begunkov <asml.silence@gmail.com>
>
> cmpxchg() with an immediate value could be replaced with less expensive
> xchg(). The same true if new value don't _depend_ on the old one.
>
> In the second block, atomic_cmpxchg() return value isn't checked, so
> after atomic_cmpxchg() -> atomic_xchg() conversion it could be replaced
> with atomic_set(). Comparison with atomic_read() in the second chunk was
> left as an optimisation (if that was the initial intention).
>
> Signed-off-by: Pavel Begunkov <asml.silence@gmail.com>
> ---
> lib/sbitmap.c | 10 +++-------
> 1 file changed, 3 insertions(+), 7 deletions(-)
>
> diff --git a/lib/sbitmap.c b/lib/sbitmap.c
> index 155fe38756ec..7d7e0e278523 100644
> --- a/lib/sbitmap.c
> +++ b/lib/sbitmap.c
> @@ -37,9 +37,7 @@ static inline bool sbitmap_deferred_clear(struct sbitmap *sb, int index)
> /*
> * First get a stable cleared mask, setting the old mask to 0.
> */
> - do {
> - mask = sb->map[index].cleared;
> - } while (cmpxchg(&sb->map[index].cleared, mask, 0) != mask);
> + mask = xchg(&sb->map[index].cleared, 0);
>
> /*
> * Now clear the masked bits in our free word
> @@ -527,10 +525,8 @@ static struct sbq_wait_state *sbq_wake_ptr(struct sbitmap_queue *sbq)
> struct sbq_wait_state *ws = &sbq->ws[wake_index];
>
> if (waitqueue_active(&ws->wait)) {
> - int o = atomic_read(&sbq->wake_index);
> -
> - if (wake_index != o)
> - atomic_cmpxchg(&sbq->wake_index, o, wake_index);
> + if (wake_index != atomic_read(&sbq->wake_index))
> + atomic_set(&sbq->wake_index, wake_index);
> return ws;
> }
>
>
--
Yours sincerely,
Pavel Begunkov
[-- Attachment #2: OpenPGP digital signature --]
[-- Type: application/pgp-signature, Size: 833 bytes --]
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [PATCH 1/1] sbitmap: Replace cmpxchg with xchg
2019-06-29 15:42 ` Pavel Begunkov
@ 2019-06-29 15:51 ` Jens Axboe
2019-07-01 17:35 ` Omar Sandoval
1 sibling, 0 replies; 5+ messages in thread
From: Jens Axboe @ 2019-06-29 15:51 UTC (permalink / raw)
To: Pavel Begunkov, osandov, linux-block, linux-kernel
Omar?
On 6/29/19 9:42 AM, Pavel Begunkov wrote:
> Ping?
>
> On 23/05/2019 08:39, Pavel Begunkov (Silence) wrote:
>> From: Pavel Begunkov <asml.silence@gmail.com>
>>
>> cmpxchg() with an immediate value could be replaced with less expensive
>> xchg(). The same true if new value don't _depend_ on the old one.
>>
>> In the second block, atomic_cmpxchg() return value isn't checked, so
>> after atomic_cmpxchg() -> atomic_xchg() conversion it could be replaced
>> with atomic_set(). Comparison with atomic_read() in the second chunk was
>> left as an optimisation (if that was the initial intention).
>>
>> Signed-off-by: Pavel Begunkov <asml.silence@gmail.com>
>> ---
>> lib/sbitmap.c | 10 +++-------
>> 1 file changed, 3 insertions(+), 7 deletions(-)
>>
>> diff --git a/lib/sbitmap.c b/lib/sbitmap.c
>> index 155fe38756ec..7d7e0e278523 100644
>> --- a/lib/sbitmap.c
>> +++ b/lib/sbitmap.c
>> @@ -37,9 +37,7 @@ static inline bool sbitmap_deferred_clear(struct sbitmap *sb, int index)
>> /*
>> * First get a stable cleared mask, setting the old mask to 0.
>> */
>> - do {
>> - mask = sb->map[index].cleared;
>> - } while (cmpxchg(&sb->map[index].cleared, mask, 0) != mask);
>> + mask = xchg(&sb->map[index].cleared, 0);
>>
>> /*
>> * Now clear the masked bits in our free word
>> @@ -527,10 +525,8 @@ static struct sbq_wait_state *sbq_wake_ptr(struct sbitmap_queue *sbq)
>> struct sbq_wait_state *ws = &sbq->ws[wake_index];
>>
>> if (waitqueue_active(&ws->wait)) {
>> - int o = atomic_read(&sbq->wake_index);
>> -
>> - if (wake_index != o)
>> - atomic_cmpxchg(&sbq->wake_index, o, wake_index);
>> + if (wake_index != atomic_read(&sbq->wake_index))
>> + atomic_set(&sbq->wake_index, wake_index);
>> return ws;
>> }
>>
>>
>
--
Jens Axboe
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [PATCH 1/1] sbitmap: Replace cmpxchg with xchg
2019-06-29 15:42 ` Pavel Begunkov
2019-06-29 15:51 ` Jens Axboe
@ 2019-07-01 17:35 ` Omar Sandoval
1 sibling, 0 replies; 5+ messages in thread
From: Omar Sandoval @ 2019-07-01 17:35 UTC (permalink / raw)
To: Pavel Begunkov; +Cc: Jens Axboe, osandov, linux-block, linux-kernel
On Sat, Jun 29, 2019 at 08:42:23AM -0700, Pavel Begunkov wrote:
> Ping?
>
> On 23/05/2019 08:39, Pavel Begunkov (Silence) wrote:
> > From: Pavel Begunkov <asml.silence@gmail.com>
> >
> > cmpxchg() with an immediate value could be replaced with less expensive
> > xchg(). The same true if new value don't _depend_ on the old one.
> >
> > In the second block, atomic_cmpxchg() return value isn't checked, so
> > after atomic_cmpxchg() -> atomic_xchg() conversion it could be replaced
> > with atomic_set(). Comparison with atomic_read() in the second chunk was
> > left as an optimisation (if that was the initial intention).
> >
> > Signed-off-by: Pavel Begunkov <asml.silence@gmail.com>
> > ---
> > lib/sbitmap.c | 10 +++-------
> > 1 file changed, 3 insertions(+), 7 deletions(-)
> >
> > diff --git a/lib/sbitmap.c b/lib/sbitmap.c
> > index 155fe38756ec..7d7e0e278523 100644
> > --- a/lib/sbitmap.c
> > +++ b/lib/sbitmap.c
> > @@ -37,9 +37,7 @@ static inline bool sbitmap_deferred_clear(struct sbitmap *sb, int index)
> > /*
> > * First get a stable cleared mask, setting the old mask to 0.
> > */
> > - do {
> > - mask = sb->map[index].cleared;
> > - } while (cmpxchg(&sb->map[index].cleared, mask, 0) != mask);
> > + mask = xchg(&sb->map[index].cleared, 0);
This hunk is clearly correct.
> > /*
> > * Now clear the masked bits in our free word
> > @@ -527,10 +525,8 @@ static struct sbq_wait_state *sbq_wake_ptr(struct sbitmap_queue *sbq)
> > struct sbq_wait_state *ws = &sbq->ws[wake_index];
> >
> > if (waitqueue_active(&ws->wait)) {
> > - int o = atomic_read(&sbq->wake_index);
> > -
> > - if (wake_index != o)
> > - atomic_cmpxchg(&sbq->wake_index, o, wake_index);
> > + if (wake_index != atomic_read(&sbq->wake_index))
> > + atomic_set(&sbq->wake_index, wake_index);
This hunk used to imply a memory barrier and no longer does. I don't
think that's a problem, though.
Reviewed-by: Omar Sandoval <osandov@fb.com>
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [PATCH 1/1] sbitmap: Replace cmpxchg with xchg
2019-05-23 15:39 [PATCH 1/1] sbitmap: Replace cmpxchg with xchg Pavel Begunkov (Silence)
2019-06-29 15:42 ` Pavel Begunkov
@ 2019-07-01 19:44 ` Jens Axboe
1 sibling, 0 replies; 5+ messages in thread
From: Jens Axboe @ 2019-07-01 19:44 UTC (permalink / raw)
To: Pavel Begunkov (Silence), linux-block, linux-kernel
On 5/23/19 9:39 AM, Pavel Begunkov (Silence) wrote:
> From: Pavel Begunkov <asml.silence@gmail.com>
>
> cmpxchg() with an immediate value could be replaced with less expensive
> xchg(). The same true if new value don't _depend_ on the old one.
>
> In the second block, atomic_cmpxchg() return value isn't checked, so
> after atomic_cmpxchg() -> atomic_xchg() conversion it could be replaced
> with atomic_set(). Comparison with atomic_read() in the second chunk was
> left as an optimisation (if that was the initial intention).
Applied, thanks.
--
Jens Axboe
^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2019-07-01 19:44 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-05-23 15:39 [PATCH 1/1] sbitmap: Replace cmpxchg with xchg Pavel Begunkov (Silence)
2019-06-29 15:42 ` Pavel Begunkov
2019-06-29 15:51 ` Jens Axboe
2019-07-01 17:35 ` Omar Sandoval
2019-07-01 19:44 ` Jens Axboe
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).