From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1754093Ab3LJPUR (ORCPT ); Tue, 10 Dec 2013 10:20:17 -0500 Received: from mail-ea0-f170.google.com ([209.85.215.170]:45110 "EHLO mail-ea0-f170.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1753743Ab3LJPUL (ORCPT ); Tue, 10 Dec 2013 10:20:11 -0500 Date: Tue, 10 Dec 2013 16:20:06 +0100 From: Ingo Molnar To: "Paul E. McKenney" Cc: Jonathan Corbet , linux-kernel@vger.kernel.org, laijs@cn.fujitsu.com, dipankar@in.ibm.com, akpm@linux-foundation.org, mathieu.desnoyers@efficios.com, josh@joshtriplett.org, niv@us.ibm.com, tglx@linutronix.de, peterz@infradead.org, rostedt@goodmis.org, dhowells@redhat.com, edumazet@google.com, darren@dvhart.com, fweisbec@gmail.com, sbw@mit.edu, Oleg Nesterov , Rusty Russell Subject: Re: [PATCH tip/core/locking 4/4] Documentation/memory-barriers.txt: Document ACCESS_ONCE() Message-ID: <20131210152006.GD873@gmail.com> References: <20131204224628.GA30159@linux.vnet.ibm.com> <1386197219-31964-1-git-send-email-paulmck@linux.vnet.ibm.com> <1386197219-31964-4-git-send-email-paulmck@linux.vnet.ibm.com> <20131205132101.45c56f93@lwn.net> <20131205214406.GY15492@linux.vnet.ibm.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20131205214406.GY15492@linux.vnet.ibm.com> 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 * Paul E. McKenney wrote: > > [...] > > > > > + (*) The compiler is within its rights to reorder memory accesses unless > > > + you tell it not to. For example, consider the following interaction > > > + between process-level code and an interrupt handler: > > > + > > > + void process_level(void) > > > + { > > > + msg = get_message(); > > > + flag = true; > > > + } > > > + > > > + void interrupt_handler(void) > > > + { > > > + if (flag) > > > + process_message(msg); > > > + } > > > + > > > + There is nothing to prevent the the compiler from transforming > > > + process_level() to the following, in fact, this might well be a > > > + win for single-threaded code: > > > + > > > + void process_level(void) > > > + { > > > + flag = true; > > > + msg = get_message(); > > > + } > > > + > > > + If the interrupt occurs between these two statement, then > > > + interrupt_handler() might be passed a garbled msg. Use ACCESS_ONCE() > > > + to prevent this as follows: > > > + > > > + void process_level(void) > > > + { > > > + ACCESS_ONCE(msg) = get_message(); > > > + ACCESS_ONCE(flag) = true; > > > + } > > > + > > > + void interrupt_handler(void) > > > + { > > > + if (ACCESS_ONCE(flag)) > > > + process_message(ACCESS_ONCE(msg)); > > > + } > > > > Looking at this, I find myself wondering why you couldn't just put a > > barrier() between the two statements in process_level()? ACCESS_ONCE() > > seems like a heavy hammer to just avoid reordering of two assignments. > > What am I missing, and what could be added here to keep the other folks as > > dense as me from missing the same thing? > > You could use barrier() from an ordering viewpoint. However, > ACCESS_ONCE() is often lighter weight than barrier(). ACCESS_ONCE() > affects only that one access, while barrier() forces the compiler to > forget pretty much anything it previously gleaned from any region of > memory, including private locations that no one else touches. > > I am adding a sentence saying that pure ordering can be provided by > barrier(), though often at higher cost. I suspect a related question would be, is the compiler allowed to reorder: x = ACCESS_ONCE(a); y = ACCESS_ONCE(b); ? This wording: + [...] Howevever, ACCESS_ONCE() can be thought of as a weak form +for barrier() that affects only the specific accesses flagged by the +ACCESS_ONCE(). Does not seem to be obvious enough to me - does it affect accesses to the variables referenced (but still allows accesses to separate variables reordered), or does it affect compiler-ordering of all ACCESS_ONCE() instances, instructing the compiler to preserve program order? Also, it's not clear what happens if non-ACCESS_ONCE() access to a variable is mixed with ACCESS_ONCE() access. Thanks, Ingo