|
@@ -104,13 +104,16 @@
|
|
#define smp_mb__after_atomic() smp_mb()
|
|
#define smp_mb__after_atomic() smp_mb()
|
|
#endif
|
|
#endif
|
|
|
|
|
|
|
|
+#ifndef smp_store_release
|
|
#define smp_store_release(p, v) \
|
|
#define smp_store_release(p, v) \
|
|
do { \
|
|
do { \
|
|
compiletime_assert_atomic_type(*p); \
|
|
compiletime_assert_atomic_type(*p); \
|
|
smp_mb(); \
|
|
smp_mb(); \
|
|
WRITE_ONCE(*p, v); \
|
|
WRITE_ONCE(*p, v); \
|
|
} while (0)
|
|
} while (0)
|
|
|
|
+#endif
|
|
|
|
|
|
|
|
+#ifndef smp_load_acquire
|
|
#define smp_load_acquire(p) \
|
|
#define smp_load_acquire(p) \
|
|
({ \
|
|
({ \
|
|
typeof(*p) ___p1 = READ_ONCE(*p); \
|
|
typeof(*p) ___p1 = READ_ONCE(*p); \
|
|
@@ -118,6 +121,7 @@ do { \
|
|
smp_mb(); \
|
|
smp_mb(); \
|
|
___p1; \
|
|
___p1; \
|
|
})
|
|
})
|
|
|
|
+#endif
|
|
|
|
|
|
#endif /* !__ASSEMBLY__ */
|
|
#endif /* !__ASSEMBLY__ */
|
|
#endif /* __ASM_GENERIC_BARRIER_H */
|
|
#endif /* __ASM_GENERIC_BARRIER_H */
|