Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S932213Ab0ANV07 (ORCPT ); Thu, 14 Jan 2010 16:26:59 -0500 Received: (majordomo@vger.kernel.org) by vger.kernel.org id S1754679Ab0ANV06 (ORCPT ); Thu, 14 Jan 2010 16:26:58 -0500 Received: from hrndva-omtalb.mail.rr.com ([71.74.56.123]:63445 "EHLO hrndva-omtalb.mail.rr.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1753028Ab0ANV05 (ORCPT ); Thu, 14 Jan 2010 16:26:57 -0500 X-Authority-Analysis: v=1.0 c=1 a=r_nf4N-T2GkA:10 a=7U3hwN5JcxgA:10 a=_W-BoW2mSRrbvTZicGEA:9 a=OX1cvzyp1ykmmntX2wKhV2_6BZgA:4 X-Cloudmark-Score: 0 X-Originating-IP: 74.67.89.75 Subject: Re: [RFC PATCH] introduce sys_membarrier(): process-wide memory barrier (v5) From: Steven Rostedt Reply-To: rostedt@goodmis.org To: Mathieu Desnoyers Cc: Peter Zijlstra , linux-kernel@vger.kernel.org, "Paul E. McKenney" , Oleg Nesterov , Ingo Molnar , akpm@linux-foundation.org, josh@joshtriplett.org, tglx@linutronix.de, Valdis.Kletnieks@vt.edu, dhowells@redhat.com, laijs@cn.fujitsu.com, dipankar@in.ibm.com In-Reply-To: <20100114193355.GA23436@Krystal> References: <20100113013757.GA29314@Krystal> <1263400738.4244.242.camel@laptop> <20100113193603.GA27327@Krystal> <1263460096.4244.282.camel@laptop> <20100114162609.GC3487@Krystal> <1263488625.4244.333.camel@laptop> <20100114175449.GA15387@Krystal> <20100114183739.GA18435@Krystal> <1263495132.28171.3861.camel@gandalf.stny.rr.com> <20100114193355.GA23436@Krystal> Content-Type: text/plain; charset="ISO-8859-15" Organization: Kihon Technologies Inc. Date: Thu, 14 Jan 2010 16:26:54 -0500 Message-ID: <1263504414.28171.3962.camel@gandalf.stny.rr.com> Mime-Version: 1.0 X-Mailer: Evolution 2.28.1 Content-Transfer-Encoding: 7bit Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 2462 Lines: 55 On Thu, 2010-01-14 at 14:33 -0500, Mathieu Desnoyers wrote: > It's a case where CPU 1 switches from our mm to another mm: > > CPU 0 (membarrier) CPU 1 (another mm -our mm) > > > urcu read unlock() > barrier() > store local gp > > rq->curr = next (1) > memory access before membarrier > > smp_mb() > mm_cpumask includes CPU 1 > rcu_read_lock() > if (cpu_curr(1)->mm != our mm) > skip CPU 1 -> here, rq->curr new version is already visible > rcu_read_unlock() > smp_mb() > > memory access after membarrier > -> this is where we allow freeing > the old structure although the > buffered access C.S. data is > still in flight. OK, yeah this makes much more sense. -- Steve > User-space access C.S. data (2) > (buffer flush) > switch_mm() > smp_mb() > clear_mm_cpumask() > set_mm_cpumask() > smp_mb() (by load_cr3() on x86) > switch_to() > > > current = next (1) (buffer flush) > access critical section data (3) > > As we can see, the reordering of (1) and (2) is problematic, as it lets > the check skip over a CPU that have global side-effects not committed to > memory yet. -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/