On Thu, Jun 08, 2017 at 08:00:15PM +1000, Nicholas Piggin wrote: > I have those, I just also would like one in the core scheduler's use > of smp_mb__after_spinlock(), because it would be easy for core scheduler > change to miss that quirk. Sure we can say that Peter and scheduler > maintainers know about powerpc oddities, but then why shouldn't it also > go into a comment there?
So the core scheduler guarantees smp_mb() or equivalent full transitive ordering happens at schedule() time. It has for a fairly long time and I don't think we'll ever get rid of that, its fairly fundamental. PPC is special in that smp_mb() ends up being the strongest ordering primitive there is. But note that PPC is not unique, afaict Alpha is in the same boat. They rely on the MB from the scheduler core. IA64 OTOH, while they have smp_mb() == mb() still needs SYNC.I in __switch_to() to serialize against (instruction) cache flushes. So while I'm all for adding comments explaining what the core provides, I don't see immediate reasons to call out PPC.