You've already forked linux-apfs
mirror of
https://github.com/linux-apfs/linux-apfs.git
synced 2026-05-01 15:00:59 -07:00
[PATCH] use smp_mb/wmb/rmb where possible
Replace a number of memory barriers with smp_ variants. This means we won't take the unnecessary hit on UP machines. Signed-off-by: Anton Blanchard <anton@samba.org> Signed-off-by: Andrew Morton <akpm@osdl.org> Signed-off-by: Linus Torvalds <torvalds@osdl.org>
This commit is contained in:
committed by
Linus Torvalds
parent
0d8d4d42f2
commit
d59dd4620f
+2
-2
@@ -767,7 +767,7 @@ static inline void pipelined_send(struct mqueue_inode_info *info,
|
||||
list_del(&receiver->list);
|
||||
receiver->state = STATE_PENDING;
|
||||
wake_up_process(receiver->task);
|
||||
wmb();
|
||||
smp_wmb();
|
||||
receiver->state = STATE_READY;
|
||||
}
|
||||
|
||||
@@ -786,7 +786,7 @@ static inline void pipelined_receive(struct mqueue_inode_info *info)
|
||||
list_del(&sender->list);
|
||||
sender->state = STATE_PENDING;
|
||||
wake_up_process(sender->task);
|
||||
wmb();
|
||||
smp_wmb();
|
||||
sender->state = STATE_READY;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user