Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1759319AbaD3QRq (ORCPT ); Wed, 30 Apr 2014 12:17:46 -0400 Received: from g4t3425.houston.hp.com ([15.201.208.53]:36058 "EHLO g4t3425.houston.hp.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1759076AbaD3QRp (ORCPT ); Wed, 30 Apr 2014 12:17:45 -0400 Message-ID: <1398874657.2618.1.camel@buesod1.americas.hpqcorp.net> Subject: Re: [PATCH v2] rwsem: Support optimistic spinning From: Davidlohr Bueso To: Peter Zijlstra Cc: Ingo Molnar , Andrew Morton , Linus Torvalds , Tim Chen , Andrea Arcangeli , Alex Shi , Andi Kleen , Michel Lespinasse , Rik van Riel , Peter Hurley , Thomas Gleixner , "Paul E.McKenney" , Aswin Chandramouleeswaran , "Norton, Scott J" , linux-kernel@vger.kernel.org Date: Wed, 30 Apr 2014 09:17:37 -0700 In-Reply-To: <20140430082715.GA11096@twins.programming.kicks-ass.net> References: <1398205166.6345.7.camel@buesod1.americas.hpqcorp.net> <1398722941.25549.16.camel@buesod1.americas.hpqcorp.net> <20140430082715.GA11096@twins.programming.kicks-ass.net> Content-Type: text/plain; charset="UTF-8" X-Mailer: Evolution 3.6.4 (3.6.4-3.fc18) Mime-Version: 1.0 Content-Transfer-Encoding: 7bit Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Wed, 2014-04-30 at 10:27 +0200, Peter Zijlstra wrote: > On Mon, Apr 28, 2014 at 03:09:01PM -0700, Davidlohr Bueso wrote: > > +/* > > + * Try to acquire write lock before the writer has been put on wait queue. > > + */ > > +static inline bool rwsem_try_write_lock_unqueued(struct rw_semaphore *sem) > > +{ > > + long count = ACCESS_ONCE(sem->count); > > +retry: > > + if (count == RWSEM_WAITING_BIAS) { > > + count = cmpxchg(&sem->count, RWSEM_WAITING_BIAS, > > + RWSEM_ACTIVE_WRITE_BIAS + RWSEM_WAITING_BIAS); > > + /* allow write lock stealing, try acquiring the write lock. */ > > + if (count == RWSEM_WAITING_BIAS) > > + goto acquired; > > + else if (count == 0) > > + goto retry; > > + } else if (count == 0) { > > + count = cmpxchg(&sem->count, 0, RWSEM_ACTIVE_WRITE_BIAS); > > + if (count == 0) > > + goto acquired; > > + else if (count == RWSEM_WAITING_BIAS) > > + goto retry; > > + } > > + return false; > > + > > +acquired: > > + return true; > > +} > > Could we have written that like: > > static inline bool rwsem_try_write_lock_unqueued(struct rw_semaphore *sem) > { > long old, count = ACCESS_ONCE(sem->count); > > for (;;) { > if (!(count == 0 || count == RWSEM_WAITING_BIAS)) > return false; > > old = cmpxchg(&sem->count, count, count + RWSEM_ACTIVE_BIAS); > if (old == count) > return true; > > count = old; > } > } > > ? Yeah that's a lot nicer. -- 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/