powerpc: Implement smp_cond_load_relaxed()
[linux-2.6-microblaze.git] / arch / powerpc / include / asm / barrier.h
index 35c1b8f..f53c423 100644 (file)
@@ -80,6 +80,22 @@ do {                                                                 \
        ___p1;                                                          \
 })
 
+#ifdef CONFIG_PPC64
+#define smp_cond_load_relaxed(ptr, cond_expr) ({               \
+       typeof(ptr) __PTR = (ptr);                              \
+       __unqual_scalar_typeof(*ptr) VAL;                       \
+       VAL = READ_ONCE(*__PTR);                                \
+       if (unlikely(!(cond_expr))) {                           \
+               spin_begin();                                   \
+               do {                                            \
+                       VAL = READ_ONCE(*__PTR);                \
+               } while (!(cond_expr));                         \
+               spin_end();                                     \
+       }                                                       \
+       (typeof(*ptr))VAL;                                      \
+})
+#endif
+
 #ifdef CONFIG_PPC_BOOK3S_64
 #define NOSPEC_BARRIER_SLOT   nop
 #elif defined(CONFIG_PPC_FSL_BOOK3E)