From: Mathieu Desnoyers Date: Thu, 19 Sep 2019 17:37:01 +0000 (-0400) Subject: sched/membarrier: Call sync_core only before usermode for same mm X-Git-Tag: v4.19.79~44 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=e250f2b6aa9ef9cef4f239b15975867c4902f968;p=platform%2Fkernel%2Flinux-rpi.git sched/membarrier: Call sync_core only before usermode for same mm [ Upstream commit 2840cf02fae627860156737e83326df354ee4ec6 ] 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 Signed-off-by: Mathieu Desnoyers Signed-off-by: Peter Zijlstra (Intel) Cc: Chris Metcalf Cc: Christoph Lameter Cc: Eric W. Biederman Cc: Kirill Tkhai Cc: Linus Torvalds Cc: Mike Galbraith Cc: Paul E. McKenney Cc: Peter Zijlstra Cc: Russell King - ARM Linux admin Cc: Thomas Gleixner Link: https://lkml.kernel.org/r/20190919173705.2181-4-mathieu.desnoyers@efficios.com Signed-off-by: Ingo Molnar Signed-off-by: Sasha Levin --- diff --git a/include/linux/sched/mm.h b/include/linux/sched/mm.h index 0d10b7c..e9d4e38 100644 --- a/include/linux/sched/mm.h +++ b/include/linux/sched/mm.h @@ -330,6 +330,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;