if (!__builtin_constant_p(_new) || \
((_new) != NULL)) \
wmb(); \
- uatomic_cmpxchg(p, _________pold, _________pnew); \
+ (likely(URCU_CAS_AVAIL()) ? \
+ (uatomic_cmpxchg(p, _________pold, _________pnew)) : \
+ (compat_uatomic_cmpxchg(p, _________pold, \
+ _________pnew))) \
})
/**
#define compat_uatomic_cmpxchg(ptr, old, _new) uatomic_cmpxchg(ptr, old, _new)
#else
extern int __urcu_cas_avail;
-#define URCU_CAS_AVAIL() __urcu_cas_avail
+extern int __urcu_cas_init(void);
+#define URCU_CAS_AVAIL() \
+ ((likely(__urcu_cas_avail > 0)) ? \
+ (1) : \
+ ((unlikely(__urcu_cas_avail < 0) ? \
+ (__urcu_cas_init()) : \
+ (0))))
extern unsigned long _compat_uatomic_cmpxchg(void *addr, unsigned long old,
unsigned long _new, int len);