[PATCH] sched/rt: Use atomic_try_cmpxchg_acquire() in rto_start_trylock()

David Carlier posted 1 patch 2 months ago
kernel/sched/rt.c | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
[PATCH] sched/rt: Use atomic_try_cmpxchg_acquire() in rto_start_trylock()
Posted by David Carlier 2 months ago
Replace this pattern in rto_start_trylock():

    !atomic_cmpxchg_acquire(*ptr, 0, new)

... with the simpler and faster:

    atomic_try_cmpxchg_acquire(*ptr, &zero, new)

The x86 CMPXCHG instruction returns success in the ZF flag, so
atomic_try_cmpxchg_acquire() saves a compare after the CMPXCHG.

No functional change intended.

Signed-off-by: David Carlier <devnexen@gmail.com>
---
 kernel/sched/rt.c | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/kernel/sched/rt.c b/kernel/sched/rt.c
index 4ee8faf01441..13ac94899c18 100644
--- a/kernel/sched/rt.c
+++ b/kernel/sched/rt.c
@@ -2172,7 +2172,8 @@ static int rto_next_cpu(struct root_domain *rd)
 
 static inline bool rto_start_trylock(atomic_t *v)
 {
-	return !atomic_cmpxchg_acquire(v, 0, 1);
+	int zero = 0;
+	return atomic_try_cmpxchg_acquire(v, &zero, 1);
 }
 
 static inline void rto_start_unlock(atomic_t *v)
-- 
2.53.0
Re: [PATCH] sched/rt: Use atomic_try_cmpxchg_acquire() in rto_start_trylock()
Posted by Uros Bizjak 2 months ago

On 4/15/26 14:40, David Carlier wrote:
> Replace this pattern in rto_start_trylock():
> 
>      !atomic_cmpxchg_acquire(*ptr, 0, new)
> 
> ... with the simpler and faster:
> 
>      atomic_try_cmpxchg_acquire(*ptr, &zero, new)
> 
> The x86 CMPXCHG instruction returns success in the ZF flag, so
> atomic_try_cmpxchg_acquire() saves a compare after the CMPXCHG.
> 
> No functional change intended.
> 
> Signed-off-by: David Carlier <devnexen@gmail.com>

Reviewed-by: Uros Bizjak <ubizjak@gmail.com>

> ---
>   kernel/sched/rt.c | 3 ++-
>   1 file changed, 2 insertions(+), 1 deletion(-)
> 
> diff --git a/kernel/sched/rt.c b/kernel/sched/rt.c
> index 4ee8faf01441..13ac94899c18 100644
> --- a/kernel/sched/rt.c
> +++ b/kernel/sched/rt.c
> @@ -2172,7 +2172,8 @@ static int rto_next_cpu(struct root_domain *rd)
>   
>   static inline bool rto_start_trylock(atomic_t *v)
>   {
> -	return !atomic_cmpxchg_acquire(v, 0, 1);
> +	int zero = 0;
> +	return atomic_try_cmpxchg_acquire(v, &zero, 1);
>   }
>   
>   static inline void rto_start_unlock(atomic_t *v)