Hi all, Today's linux-next merge of the tip tree got a conflict in:
include/linux/sched/mm.h between commit: d70f2a14b72a ("include/linux/sched/mm.h: uninline mmdrop_async(), etc") from Linus' tree and commit: 306e060435d7 ("membarrier: Document scheduler barrier requirements") from the tip tree. I fixed it up (I used the former version ofinclude/linux/sched/mm.h and adde the following merge fix patch) and can carry the fix as necessary. This is now fixed as far as linux-next is concerned, but any non trivial conflicts should be mentioned to your upstream maintainer when your tree is submitted for merging. You may also want to consider cooperating with the maintainer of the conflicting tree to minimise any particularly complex conflicts. From: Stephen Rothwell <s...@canb.auug.org.au> Date: Tue, 6 Feb 2018 11:51:34 +1100 Subject: [PATCH] membarrier: fix up for mmdrop move Signed-off-by: Stephen Rothwell <s...@canb.auug.org.au> --- kernel/fork.c | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/kernel/fork.c b/kernel/fork.c index 5c372c954f3b..c7c112391d79 100644 --- a/kernel/fork.c +++ b/kernel/fork.c @@ -606,6 +606,11 @@ static void __mmdrop(struct mm_struct *mm) void mmdrop(struct mm_struct *mm) { + /* + * The implicit full barrier implied by atomic_dec_and_test() is + * required by the membarrier system call before returning to + * user-space, after storing to rq->curr. + */ if (unlikely(atomic_dec_and_test(&mm->mm_count))) __mmdrop(mm); } -- 2.15.1 -- Cheers, Stephen Rothwell