Re: [PATCH] fs/btrfs: Use atomic_try_cmpxchg in free_extent_buffer

From: David Sterba
Date: Thu Aug 18 2022 - 13:21:48 EST


On Tue, Aug 09, 2022 at 06:36:33PM +0200, Uros Bizjak wrote:
> Use `atomic_try_cmpxchg(ptr, &old, new)` instead of
> `atomic_cmpxchg(ptr, old, new) == old` in free_extent_buffer. This
> has two benefits:
>
> - The x86 cmpxchg instruction returns success in the ZF flag, so this
> change saves a compare after cmpxchg, as well as a related move
> instruction in the front of cmpxchg.
>
> - atomic_try_cmpxchg implicitly assigns the *ptr value to &old when
> cmpxchg fails, enabling further code simplifications.
>
> This patch has no functional change.
>
> Cc: Chris Mason <clm@xxxxxx>
> Cc: Josef Bacik <josef@xxxxxxxxxxxxxx>
> Cc: David Sterba <dsterba@xxxxxxxx>
> Signed-off-by: Uros Bizjak <ubizjak@xxxxxxxxx>

It's not in a performance critical code but resulting code is slightly
more efficient. Added to misc-next, thanks.