From mboxrd@z Thu Jan 1 00:00:00 1970 From: Benjamin Herrenschmidt Subject: Re: [PATCH v7 1/4] spinlock: A new lockref structure for lockless update of refcount Date: Fri, 30 Aug 2013 12:30:57 +1000 Message-ID: <1377829857.4028.46.camel@pasglop> References: <1375758759-29629-1-git-send-email-Waiman.Long@hp.com> <1375758759-29629-2-git-send-email-Waiman.Long@hp.com> <1377751465.4028.20.camel@pasglop> <20130829070012.GC27322@gmail.com> <1377822408.4028.44.camel@pasglop> <29797.1377828380@ale.ozlabs.ibm.com> Mime-Version: 1.0 Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 7bit Cc: Linus Torvalds , Ingo Molnar , Waiman Long , Alexander Viro , Jeff Layton , Miklos Szeredi , Ingo Molnar , Thomas Gleixner , linux-fsdevel , Linux Kernel Mailing List , Peter Zijlstra , Steven Rostedt , Andi Kleen , "Chandramouleeswaran, Aswin" , "Norton, Scott J" To: Michael Neuling Return-path: In-Reply-To: <29797.1377828380@ale.ozlabs.ibm.com> Sender: linux-kernel-owner@vger.kernel.org List-Id: linux-fsdevel.vger.kernel.org On Fri, 2013-08-30 at 12:06 +1000, Michael Neuling wrote: > powerpc patch below. I'm using arch_spin_is_locked() to implement > arch_spin_value_unlocked(). > > +static __always_inline int arch_spin_value_unlocked(arch_spinlock_t lock) > +{ > + return !arch_spin_is_locked(&lock); > +} > + Arguably, it should be done the other way around :-) arch_spin_value_unlocked semantics is to basically operate on an already read copy of the value, while arch_spin_is_locked() has ACCESS_ONE semantics on *top* of that. Or we can keep both completely separate like Linus does on x86. Cheers, Ben.