mirror of
https://github.com/torvalds/linux.git
synced 2024-11-07 12:41:55 +00:00
s390: use generic memory barriers
The s390 kernel is SMP to 99.99%, we just didn't bother with a non-smp variant for the memory-barriers. If the generic header is used we'd get the non-smp version for free. It will save a small amount of text space for CONFIG_SMP=n. Suggested-by: Martin Schwidefsky <schwidefsky@de.ibm.com> Signed-off-by: Michael S. Tsirkin <mst@redhat.com> Acked-by: Peter Zijlstra (Intel) <peterz@infradead.org>
This commit is contained in:
parent
234927540e
commit
a677f48695
@ -29,9 +29,6 @@
|
||||
#define __smp_mb() mb()
|
||||
#define __smp_rmb() rmb()
|
||||
#define __smp_wmb() wmb()
|
||||
#define smp_mb() __smp_mb()
|
||||
#define smp_rmb() __smp_rmb()
|
||||
#define smp_wmb() __smp_wmb()
|
||||
|
||||
#define __smp_store_release(p, v) \
|
||||
do { \
|
||||
|
Loading…
Reference in New Issue
Block a user