linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* asm-generic: Disallow no-op mb() for SMP systems
@ 2018-01-31 13:00 Peter Zijlstra
  2018-01-31 13:17 ` Will Deacon
                   ` (2 more replies)
  0 siblings, 3 replies; 17+ messages in thread
From: Peter Zijlstra @ 2018-01-31 13:00 UTC (permalink / raw)
  To: Stafford Horne, Will Deacon, Paul McKenney, Jonas Bonn,
	Stefan Kristiansson
  Cc: David Howells, Arnd Bergmann, linux-kernel, Thomas Gleixner


While looking through the qspinlock users, I stumbled upon openrisc and
being curious, I wanted to have a look at its memory model.

To my surprise it doesn't have asm/barrier.h. It does however support
SMP. This lead me to wonder why it would compile, turns out we provide a
no-op mb() if the architecture does not provide one.

With the obvious exception of Sequentially Consistent SMP systems, this
is terribly broken. And seeing how SC SMP is really rather unusual (and
unlikely), change the asm-generic/barrier.h to not provide this.

This _will_ break openrisc builds, they had better clarify their
position by writing their own barrier.h with a comment in.

Signed-off-by: Peter Zijlstra (Intel) <peterz@infradead.org>
---
 include/asm-generic/barrier.h | 6 ++++++
 1 file changed, 6 insertions(+)

diff --git a/include/asm-generic/barrier.h b/include/asm-generic/barrier.h
index fe297b599b0a..7a10748615ff 100644
--- a/include/asm-generic/barrier.h
+++ b/include/asm-generic/barrier.h
@@ -30,9 +30,15 @@
  * Fall back to compiler barriers if nothing better is provided.
  */
 
+#ifndef CONFIG_SMP
+/*
+ * If your SMP architecture really is Sequentially Consistent, you get
+ * barrier.h to write a nice big comment about it.
+ */
 #ifndef mb
 #define mb()	barrier()
 #endif
+#endif
 
 #ifndef rmb
 #define rmb()	mb()

^ permalink raw reply related	[flat|nested] 17+ messages in thread

end of thread, other threads:[~2018-02-03 11:44 UTC | newest]

Thread overview: 17+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2018-01-31 13:00 asm-generic: Disallow no-op mb() for SMP systems Peter Zijlstra
2018-01-31 13:17 ` Will Deacon
2018-01-31 13:26   ` Peter Zijlstra
2018-02-01 12:27     ` Stafford Horne
2018-02-01 13:29       ` Peter Zijlstra
2018-02-01 13:32         ` Will Deacon
2018-02-01 13:53           ` Peter Zijlstra
2018-02-01 15:39             ` Will Deacon
2018-02-01 15:50               ` Peter Zijlstra
2018-02-01 15:52                 ` Peter Zijlstra
2018-02-02 13:48         ` Stafford Horne
2018-02-02 19:14 ` kbuild test robot
2018-02-03 11:43   ` Peter Zijlstra
2018-02-02 20:00 ` kbuild test robot
2018-02-02 20:25   ` Peter Zijlstra
2018-02-02 21:08     ` Alan Cox
2018-02-03 11:42       ` Peter Zijlstra

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).