mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-12-28 11:18:45 +07:00
00b73d8d1b
The version of futex.h in asm-generic should really be adapted to do the same thing so that this hideous code does not have to be duplicated per-arch. Signed-off-by: Rich Felker <dalias@libc.org>
25 lines
443 B
C
25 lines
443 B
C
#ifndef __ASM_SH_FUTEX_IRQ_H
|
|
#define __ASM_SH_FUTEX_IRQ_H
|
|
|
|
static inline int atomic_futex_op_cmpxchg_inatomic(u32 *uval,
|
|
u32 __user *uaddr,
|
|
u32 oldval, u32 newval)
|
|
{
|
|
unsigned long flags;
|
|
int ret;
|
|
u32 prev = 0;
|
|
|
|
local_irq_save(flags);
|
|
|
|
ret = get_user(prev, uaddr);
|
|
if (!ret && oldval == prev)
|
|
ret = put_user(newval, uaddr);
|
|
|
|
local_irq_restore(flags);
|
|
|
|
*uval = prev;
|
|
return ret;
|
|
}
|
|
|
|
#endif /* __ASM_SH_FUTEX_IRQ_H */
|