1 // SPDX-License-Identifier: GPL-2.0+
3 * Emulated 1-byte cmpxchg operation for architectures lacking direct
4 * support for this size. This is implemented in terms of 4-byte cmpxchg
7 * Copyright (C) 2024 Paul E. McKenney.
10 #include <linux/types.h>
11 #include <linux/export.h>
12 #include <linux/instrumented.h>
13 #include <linux/atomic.h>
14 #include <linux/panic.h>
15 #include <linux/bug.h>
16 #include <asm-generic/rwonce.h>
17 #include <linux/cmpxchg-emu.h>
24 /* Emulate one-byte cmpxchg() in terms of 4-byte cmpxchg. */
25 uintptr_t cmpxchg_emu_u8(volatile u8 *p, uintptr_t old, uintptr_t new)
27 u32 *p32 = (u32 *)(((uintptr_t)p) & ~0x3);
28 int i = ((uintptr_t)p) & 0x3;
33 ret = READ_ONCE(*p32);
36 if (old32.b[i] != old)
40 instrument_atomic_read_write(p, 1);
41 ret = data_race(cmpxchg(p32, old32.w, new32.w)); // Overridden above.
42 } while (ret != old32.w);
45 EXPORT_SYMBOL_GPL(cmpxchg_emu_u8);