From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1755103Ab3LJRnk (ORCPT ); Tue, 10 Dec 2013 12:43:40 -0500 Received: from relay5-d.mail.gandi.net ([217.70.183.197]:60804 "EHLO relay5-d.mail.gandi.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751830Ab3LJRnh (ORCPT ); Tue, 10 Dec 2013 12:43:37 -0500 X-Originating-IP: 50.43.14.201 Date: Tue, 10 Dec 2013 09:43:20 -0800 From: Josh Triplett To: Peter Zijlstra Cc: "Paul E. McKenney" , linux-kernel@vger.kernel.org, mingo@kernel.org, laijs@cn.fujitsu.com, dipankar@in.ibm.com, akpm@linux-foundation.org, mathieu.desnoyers@efficios.com, niv@us.ibm.com, tglx@linutronix.de, rostedt@goodmis.org, dhowells@redhat.com, edumazet@google.com, darren@dvhart.com, fweisbec@gmail.com, sbw@mit.edu, Ingo Molnar , Oleg Nesterov , Linus Torvalds , Will Deacon , Tim Chen , Waiman Long , Andrea Arcangeli , Andi Kleen , Michel Lespinasse , Davidlohr Bueso , Rik van Riel , Peter Hurley , "H. Peter Anvin" , Arnd Bergmann , Benjamin Herrenschmidt Subject: Re: [PATCH v5 tip/core/locking 5/7] Documentation/memory-barriers.txt: Downgrade UNLOCK+LOCK Message-ID: <20131210174320.GB10311@leaf> References: <20131210012738.GA24317@linux.vnet.ibm.com> <1386638883-25379-1-git-send-email-paulmck@linux.vnet.ibm.com> <1386638883-25379-5-git-send-email-paulmck@linux.vnet.ibm.com> <20131210131422.GG12849@twins.programming.kicks-ass.net> <20131210171247.GQ4208@linux.vnet.ibm.com> <20131210172528.GQ12849@twins.programming.kicks-ass.net> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20131210172528.GQ12849@twins.programming.kicks-ass.net> User-Agent: Mutt/1.5.21 (2010-09-15) Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Tue, Dec 10, 2013 at 06:25:28PM +0100, Peter Zijlstra wrote: > On Tue, Dec 10, 2013 at 09:12:47AM -0800, Paul E. McKenney wrote: > > > The way I read the above it says that you need > > > smp_mb__after_unlock_lock() when the UNLOCK and LOCK are on the same > > > variable. That doesn't make sense, I thought that was the one case we > > > all agreed on it would indeed be a full barrier without extra trickery. > > > > On x86, sure, but smp_mb__after_unlock_lock() is nothingness on x86 > > anyway. Other architectures might benefit from requiring that the > > smp_mb__after_unlock_lock() be used in this case. > > Confused, UNLOCK X, LOCK X, must always be fully serializing. That's the > entire purpose of the thing. > > The only place you can go play games (and clearly we are going there) is > when the UNLOCK and LOCK are on different variables. That would certainly be a good assumption to preserve, and it would eliminate most of the need for smp_mb__after_unlock_lock(). - Josh Triplett