Merge tag 'pm-4.13-rc4' of git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm
[linux/fpc-iii.git] / arch / x86 / include / asm / cmpxchg_64.h
blobcaa23a34c963ae34e1492c19633c53019d308caf
1 #ifndef _ASM_X86_CMPXCHG_64_H
2 #define _ASM_X86_CMPXCHG_64_H
4 static inline void set_64bit(volatile u64 *ptr, u64 val)
6 *ptr = val;
9 #define cmpxchg64(ptr, o, n) \
10 ({ \
11 BUILD_BUG_ON(sizeof(*(ptr)) != 8); \
12 cmpxchg((ptr), (o), (n)); \
15 #define cmpxchg64_local(ptr, o, n) \
16 ({ \
17 BUILD_BUG_ON(sizeof(*(ptr)) != 8); \
18 cmpxchg_local((ptr), (o), (n)); \
21 #define system_has_cmpxchg_double() boot_cpu_has(X86_FEATURE_CX16)
23 #endif /* _ASM_X86_CMPXCHG_64_H */