2008-10-23 13:26:29 +08:00
|
|
|
#ifndef _ASM_X86_CMPXCHG_64_H
|
|
|
|
#define _ASM_X86_CMPXCHG_64_H
|
2007-05-08 15:35:02 +08:00
|
|
|
|
2011-08-19 02:40:22 +08:00
|
|
|
static inline void set_64bit(volatile u64 *ptr, u64 val)
|
|
|
|
{
|
|
|
|
*ptr = val;
|
|
|
|
}
|
|
|
|
|
2008-02-07 16:16:10 +08:00
|
|
|
#define cmpxchg64(ptr, o, n) \
|
2008-03-23 16:01:52 +08:00
|
|
|
({ \
|
2008-02-07 16:16:10 +08:00
|
|
|
BUILD_BUG_ON(sizeof(*(ptr)) != 8); \
|
|
|
|
cmpxchg((ptr), (o), (n)); \
|
2008-03-23 16:01:52 +08:00
|
|
|
})
|
2009-10-09 16:12:46 +08:00
|
|
|
|
2008-02-07 16:16:10 +08:00
|
|
|
#define cmpxchg64_local(ptr, o, n) \
|
2008-03-23 16:01:52 +08:00
|
|
|
({ \
|
2008-02-07 16:16:10 +08:00
|
|
|
BUILD_BUG_ON(sizeof(*(ptr)) != 8); \
|
|
|
|
cmpxchg_local((ptr), (o), (n)); \
|
2008-03-23 16:01:52 +08:00
|
|
|
})
|
2007-05-08 15:35:02 +08:00
|
|
|
|
2011-06-02 01:25:47 +08:00
|
|
|
#define system_has_cmpxchg_double() cpu_has_cx16
|
|
|
|
|
2008-10-23 13:26:29 +08:00
|
|
|
#endif /* _ASM_X86_CMPXCHG_64_H */
|