From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1755244Ab3LEJuw (ORCPT ); Thu, 5 Dec 2013 04:50:52 -0500 Received: from mail-ea0-f182.google.com ([209.85.215.182]:53623 "EHLO mail-ea0-f182.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1755077Ab3LEJuq (ORCPT ); Thu, 5 Dec 2013 04:50:46 -0500 Date: Thu, 5 Dec 2013 10:50:42 +0100 From: Ingo Molnar To: "Paul E. McKenney" Cc: 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 , Jonathan Corbet , Rusty Russell Subject: Re: [PATCH tip/core/locking 4/4] Documentation/memory-barriers.txt: Document ACCESS_ONCE() Message-ID: <20131205095042.GB16749@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> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <1386197219-31964-4-git-send-email-paulmck@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 reload a variable, for example, > + in cases where high register pressure prevents the compiler from > + keeping all data of interest in registers. The compiler might > + therefore optimize the variable tmp out of our previous example: > + > + while (tmp = a) > + do_something_with(tmp); > + > + This could result in the following code, which is perfectly safe in > + single-threaded code, but can be fatal in concurrent code: > + > + while (a) > + do_something_with(a); > + > + For example, the optimized version of this code could result in > + passing a zero to do_something_with() in the case where the variable > + a was modified by some other CPU between the "while" statement and > + the call to do_something_with(). Nit: I guess references to variable names such as 'a' should be quoted (same for 'tmp', 'b', etc): For example, the optimized version of this code could result in passing a zero to do_something_with() in the case where the variable 'a' was modified by some other CPU between the "while" statement and the call to do_something_with(). which makes reading it less ambiguous and more fluid IMO. This observation applies to the whole document as 'a' is used in many places. Thanks, Ingo