On Thu, Sep 05, 2019 at 11:12:59PM -0400, Mathieu Desnoyers wrote: > When the prev and next task's mm change, switch_mm() provides the core > serializing guarantees before returning to usermode. The only case > where an explicit core serialization is needed is when the scheduler > keeps the same mm for prev and next. > > Suggested-by: Oleg Nesterov <o...@redhat.com> > Signed-off-by: Mathieu Desnoyers <mathieu.desnoy...@efficios.com> > Cc: "Paul E. McKenney" <paul...@linux.ibm.com> > Cc: Peter Zijlstra <pet...@infradead.org> > Cc: Oleg Nesterov <o...@redhat.com> > Cc: "Eric W. Biederman" <ebied...@xmission.com> > Cc: Linus Torvalds <torva...@linux-foundation.org> > Cc: Russell King - ARM Linux admin <li...@armlinux.org.uk> > Cc: Chris Metcalf <cmetc...@ezchip.com> > Cc: Christoph Lameter <c...@linux.com> > Cc: Kirill Tkhai <tk...@yandex.ru> > Cc: Mike Galbraith <efa...@gmx.de> > Cc: Thomas Gleixner <t...@linutronix.de> > Cc: Ingo Molnar <mi...@kernel.org> > --- > include/linux/sched/mm.h | 2 ++ > 1 file changed, 2 insertions(+) > > diff --git a/include/linux/sched/mm.h b/include/linux/sched/mm.h > index 4a7944078cc3..8557ec664213 100644 > --- a/include/linux/sched/mm.h > +++ b/include/linux/sched/mm.h > @@ -362,6 +362,8 @@ enum { > > static inline void membarrier_mm_sync_core_before_usermode(struct mm_struct > *mm) > { > + if (current->mm != mm) > + return; > if (likely(!(atomic_read(&mm->membarrier_state) & > MEMBARRIER_STATE_PRIVATE_EXPEDITED_SYNC_CORE))) > return;
So SYNC_CORE is about I$ coherency and funny thing like that. Now it seems 'natural' that if we flip the address space, that I$ also gets wiped/updated, because the whole text mapping changes. But did we just assume that, or did we verify the truth of this? (I'm just being paranoid here)