Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1164346AbWLHBTp (ORCPT ); Thu, 7 Dec 2006 20:19:45 -0500 Received: (majordomo@vger.kernel.org) by vger.kernel.org id S1164356AbWLHBTp (ORCPT ); Thu, 7 Dec 2006 20:19:45 -0500 Received: from smtp101.mail.mud.yahoo.com ([209.191.85.211]:49014 "HELO smtp101.mail.mud.yahoo.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with SMTP id S1164346AbWLHBTm (ORCPT ); Thu, 7 Dec 2006 20:19:42 -0500 DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=s1024; d=yahoo.com.au; h=Received:X-YMail-OSG:Message-ID:Date:From:User-Agent:X-Accept-Language:MIME-Version:To:CC:Subject:References:In-Reply-To:Content-Type:Content-Transfer-Encoding; b=Ca9w6W+4UQZaBN6ZpQO/pXKtyBOZQmb3yqDoVDX74ejm/jruB+6KfrdYp0Lg0G2g8vyUvKQ5lNlONDDcldo5ksCzPvJXmAtdnQoTxJb+3uI8F5Z26f2zc5D+NUOBdAYI9tiI9xY2YhWbiTCnX1r0Svpr6pRmuucuuUFWkhSGqOo= ; X-YMail-OSG: ajjZ0aYVM1nvOEH1ryaCQN19l8ZWxJsQMGcfQRUUN3XJE7Xtmhteki6LTpnihvCVXkjA1C0NtyG8ZSy3TyXivRk1GgS5_9Sqi6pjI7x6frX6lNOoq65FGyZd0f6Rt1oDf.QGo_RPO68Q1LPNGKsWYRD8YlLVpDHYKE3AS5sA03JYuZwdlcB1JZzX9v5. Message-ID: <4578BD7C.4050703@yahoo.com.au> Date: Fri, 08 Dec 2006 12:18:52 +1100 From: Nick Piggin User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7.12) Gecko/20051007 Debian/1.7.12-1 X-Accept-Language: en MIME-Version: 1.0 To: Russell King CC: Christoph Lameter , David Howells , torvalds@osdl.org, akpm@osdl.org, linux-arm-kernel@lists.arm.linux.org.uk, linux-kernel@vger.kernel.org, linux-arch@vger.kernel.org Subject: Re: [PATCH] WorkStruct: Implement generic UP cmpxchg() where an arch doesn't support it References: <20061206164314.19870.33519.stgit@warthog.cambridge.redhat.com> <20061206190025.GC9959@flint.arm.linux.org.uk> <20061206195820.GA15281@flint.arm.linux.org.uk> <4577DF5C.5070701@yahoo.com.au> <20061207150303.GB1255@flint.arm.linux.org.uk> In-Reply-To: <20061207150303.GB1255@flint.arm.linux.org.uk> Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit Sender: linux-kernel-owner@vger.kernel.org X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 1920 Lines: 53 Russell King wrote: > On Thu, Dec 07, 2006 at 08:31:08PM +1100, Nick Piggin wrote: >>>Implementing ll/sc based accessor macros allows both ll/sc _and_ cmpxchg >>>architectures to produce optimal code. >>> >>>Implementing an cmpxchg based accessor macro allows cmpxchg architectures >>>to produce optimal code and ll/sc non-optimal code. >>> >>>See my point? >> >>Wrong. Your ll/sc implementation with cmpxchg is buggy. The cmpxchg >>load_locked is not locked at all, > > > Intentional - cmpxchg architectures don't generally have a load locked. Exactly, so it is wrong -- you can't implement that behaviour with load + cmpxchg. >>and there can be interleaving writes >>between the load and cmpxchg which do not cause the store_conditional >>to fail. > > > In which case the cmpxchg fails and we do the atomic operation again, > in exactly the same way that we do the operation again if the 'sc' > fails in the ll/sc case. Not if cmpxchg sees the same value, it won't fail, regardless of how many writes have hit that memory address. > I do not see any problem. This was not the big problem -- as I said, if this was the only problem we could opt for a "watered down" version that doesn't actually load locked [the ll/sc interface would be much cooler than cmpxchg, IMO :)] The main problem is the restrictions between the ll and sc. This is why I implemented atomic_cmpxchg rather than atomic_ll/sc. However I agree that in critical code, a higher level API should be used instead (eg. see atomic_add_unless, which can be implemented optimally on RISCs). Nick -- SUSE Labs, Novell Inc. Send instant messages to your online friends http://au.messenger.yahoo.com - 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/