diff options
author | Uros Bizjak <[email protected]> | 2023-09-04 17:21:01 +0200 |
---|---|---|
committer | Andrew Morton <[email protected]> | 2023-10-04 10:41:56 -0700 |
commit | 9734fe4dc22052d8010cc0b68b092fe5335ccb31 (patch) | |
tree | c61881b281bd291f964f6ccbda42af542fdffd72 /rust/helpers/helpers.c | |
parent | 398352049146e34ec6113a00c63457149a81345c (diff) |
panic: use atomic_try_cmpxchg in panic() and nmi_panic()
Use atomic_try_cmpxchg instead of atomic_cmpxchg (*ptr, old, new) == old
in panic() and nmi_panic(). x86 CMPXCHG instruction returns success in ZF
flag, so this change saves a compare after cmpxchg (and related move
instruction in front of cmpxchg).
Also, rename cpu variable to this_cpu in nmi_panic() and try to unify
logic flow between panic() and nmi_panic().
No functional change intended.
[[email protected]: clean up if/else block]
Link: https://lkml.kernel.org/r/[email protected]
Link: https://lkml.kernel.org/r/[email protected]
Signed-off-by: Uros Bizjak <[email protected]>
Cc: Mark Rutland <[email protected]>
Signed-off-by: Andrew Morton <[email protected]>
Diffstat (limited to 'rust/helpers/helpers.c')
0 files changed, 0 insertions, 0 deletions