]> www.infradead.org Git - users/willy/linux.git/commit
kexec: use atomic_try_cmpxchg_acquire() in kexec_trylock()
authorUros Bizjak <ubizjak@gmail.com>
Fri, 19 Jul 2024 10:38:52 +0000 (12:38 +0200)
committerAndrew Morton <akpm@linux-foundation.org>
Mon, 2 Sep 2024 03:43:23 +0000 (20:43 -0700)
commitacf02be3c72f12c31f916d3465c4c716b4729538
tree9f247e7a5d880e4f6d20a108c7c68680d7545b0f
parente24f4de8a72b50b67ea116b38152bb98360f81b3
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>
kernel/kexec_internal.h