Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1755073AbbB0UPb (ORCPT ); Fri, 27 Feb 2015 15:15:31 -0500 Received: from foss.arm.com ([217.140.101.70]:44178 "EHLO foss.arm.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1753261AbbB0UP3 (ORCPT ); Fri, 27 Feb 2015 15:15:29 -0500 Date: Fri, 27 Feb 2015 20:15:30 +0000 From: Will Deacon To: Pranith Kumar Cc: Catalin Marinas , Steve Capper , "linux-arm-kernel@lists.infradead.org" , open list Subject: Re: [RFC PATCH] arm64: cmpxchg.h: Bring ldxr and stxr closer Message-ID: <20150227201526.GH24818@arm.com> References: <1425067776-2794-1-git-send-email-bobby.prani@gmail.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <1425067776-2794-1-git-send-email-bobby.prani@gmail.com> User-Agent: Mutt/1.5.23 (2014-03-12) Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 1349 Lines: 35 On Fri, Feb 27, 2015 at 08:09:17PM +0000, Pranith Kumar wrote: > ARM64 documentation recommends keeping exclusive loads and stores as close as > possible. Any instructions which do not depend on the value loaded should be > moved outside. > > In the current implementation of cmpxchg(), there is a mov instruction which can > be pulled before the load exclusive instruction without any change in > functionality. This patch does that change. > > Signed-off-by: Pranith Kumar > --- > arch/arm64/include/asm/cmpxchg.h | 10 +++++----- > 1 file changed, 5 insertions(+), 5 deletions(-) [...] > @@ -166,11 +166,11 @@ static inline int __cmpxchg_double(volatile void *ptr1, volatile void *ptr2, > VM_BUG_ON((unsigned long *)ptr2 - (unsigned long *)ptr1 != 1); > do { > asm volatile("// __cmpxchg_double8\n" > + " mov %w0, #0\n" > " ldxp %0, %1, %2\n" Seriously, you might want to test this before you mindlessly make changes to low-level synchronisation code. Not only is the change completely unnecessary but it is actively harmful. Have a good weekend, Will -- 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/