aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/include/asm-generic/futex.h
diff options
context:
space:
mode:
authorArnd Bergmann <arnd@arndb.de>2021-11-26 10:58:40 +0100
committerThomas Gleixner <tglx@linutronix.de>2021-11-26 21:50:36 +0100
commit4e0d84634445ed550498d613a49ea8f6cfa5e66c (patch)
tree0e28f570b7d118288a22eebfea5dfe4688f0e482 /include/asm-generic/futex.h
parentfutex: Remove futex_cmpxchg detection (diff)
downloadwireguard-linux-4e0d84634445ed550498d613a49ea8f6cfa5e66c.tar.xz
wireguard-linux-4e0d84634445ed550498d613a49ea8f6cfa5e66c.zip
futex: Fix sparc32/m68k/nds32 build regression
The recent futex cleanup series, botched up a rename of some function names, breaking sparc32, m68k and nds32: include/asm-generic/futex.h:17:2: error: implicit declaration of function 'futex_atomic_cmpxchg_inatomic_local_generic'; did you mean 'futex_atomic_cmpxchg_inatomic_local'? [-Werror=implicit-function-declaration] Fix the macros to point to the correct functions. Fixes: 3f2bedabb62c ("futex: Ensure futex_atomic_cmpxchg_inatomic() is present") Reported-by: Stephen Rothwell <sfr@canb.auug.org.au> Signed-off-by: Arnd Bergmann <arnd@arndb.de> Signed-off-by: Thomas Gleixner <tglx@linutronix.de> Link: https://lore.kernel.org/r/20211126095852.455492-1-arnd@kernel.org
Diffstat (limited to 'include/asm-generic/futex.h')
-rw-r--r--include/asm-generic/futex.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/asm-generic/futex.h b/include/asm-generic/futex.h
index 30e7fa63b5df..66d6843bfd02 100644
--- a/include/asm-generic/futex.h
+++ b/include/asm-generic/futex.h
@@ -14,9 +14,9 @@
*
*/
#define futex_atomic_cmpxchg_inatomic(uval, uaddr, oldval, newval) \
- futex_atomic_cmpxchg_inatomic_local_generic(uval, uaddr, oldval, newval)
+ futex_atomic_cmpxchg_inatomic_local(uval, uaddr, oldval, newval)
#define arch_futex_atomic_op_inuser(op, oparg, oval, uaddr) \
- arch_futex_atomic_op_inuser_local_generic(op, oparg, oval, uaddr)
+ futex_atomic_op_inuser_local(op, oparg, oval, uaddr)
#endif /* CONFIG_SMP */
#endif