diff options
author | Uros Bizjak <ubizjak@gmail.com> | 2023-02-27 22:42:28 +0100 |
---|---|---|
committer | Andrew Morton <akpm@linux-foundation.org> | 2023-03-29 01:20:09 +0200 |
commit | bdeb91881088810ab1d8ae620862c3b4d78f4041 (patch) | |
tree | b5790da422d9eb9b58e4d08905ffb3ef84b60377 /tools/memory-model | |
parent | mm/debug: use %pGt to display page_type in dump_page() (diff) | |
download | linux-bdeb91881088810ab1d8ae620862c3b4d78f4041.tar.xz linux-bdeb91881088810ab1d8ae620862c3b4d78f4041.zip |
mm/rmap: use atomic_try_cmpxchg in set_tlb_ubc_flush_pending
Use atomic_try_cmpxchg instead of atomic_cmpxchg (*ptr, old, new) == old
in set_tlb_ubc_flush_pending. 86 CMPXCHG instruction returns success in
ZF flag, so this change saves a compare after cmpxchg (and related move
instruction in front of cmpxchg).
Also, try_cmpxchg implicitly assigns old *ptr value to "old" when cmpxchg
fails.
No functional change intended.
Link: https://lkml.kernel.org/r/20230227214228.3533299-1-ubizjak@gmail.com
Signed-off-by: Uros Bizjak <ubizjak@gmail.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Diffstat (limited to 'tools/memory-model')
0 files changed, 0 insertions, 0 deletions