mirror of
https://github.com/torvalds/linux.git
synced 2024-11-21 11:35:45 +00:00
kexec: use atomic_try_cmpxchg_acquire() in kexec_trylock()
Use atomic_try_cmpxchg_acquire(*ptr, &old, new) instead of atomic_cmpxchg_acquire(*ptr, old, new) == old in kexec_trylock(). x86 CMPXCHG instruction returns success in ZF flag, so this change saves a compare after cmpxchg. Link: https://lkml.kernel.org/r/20240719103937.53742-1-ubizjak@gmail.com Signed-off-by: Uros Bizjak <ubizjak@gmail.com> Acked-by: Baoquan He <bhe@redhat.com> Cc: Eric Biederman <ebiederm@xmission.com> Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
This commit is contained in:
parent
e24f4de8a7
commit
acf02be3c7
@ -23,7 +23,8 @@ int kimage_is_destination_range(struct kimage *image,
|
||||
extern atomic_t __kexec_lock;
|
||||
static inline bool kexec_trylock(void)
|
||||
{
|
||||
return atomic_cmpxchg_acquire(&__kexec_lock, 0, 1) == 0;
|
||||
int old = 0;
|
||||
return atomic_try_cmpxchg_acquire(&__kexec_lock, &old, 1);
|
||||
}
|
||||
static inline void kexec_unlock(void)
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user