Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S934045AbaD3Qhd (ORCPT ); Wed, 30 Apr 2014 12:37:33 -0400 Received: from casper.infradead.org ([85.118.1.10]:36663 "EHLO casper.infradead.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S933839AbaD3Qhb (ORCPT ); Wed, 30 Apr 2014 12:37:31 -0400 Date: Wed, 30 Apr 2014 18:37:24 +0200 From: Peter Zijlstra To: Davidlohr Bueso 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 Subject: Re: [PATCH v2] rwsem: Support optimistic spinning Message-ID: <20140430163724.GH11096@twins.programming.kicks-ass.net> References: <1398205166.6345.7.camel@buesod1.americas.hpqcorp.net> <1398722941.25549.16.camel@buesod1.americas.hpqcorp.net> <20140430092136.GD11096@twins.programming.kicks-ass.net> <1398875537.2618.9.camel@buesod1.americas.hpqcorp.net> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <1398875537.2618.9.camel@buesod1.americas.hpqcorp.net> User-Agent: Mutt/1.5.21 (2012-12-30) Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Wed, Apr 30, 2014 at 09:32:17AM -0700, Davidlohr Bueso wrote: > On Wed, 2014-04-30 at 11:21 +0200, Peter Zijlstra wrote: > > On Mon, Apr 28, 2014 at 03:09:01PM -0700, Davidlohr Bueso wrote: > > > +#ifdef CONFIG_SMP > > > > > +#else > > > +static bool rwsem_optimistic_spin(struct rw_semaphore *sem) > > > +{ > > > + return false; > > > +} > > > +#endif > > > > On the mutex side we guard this with MUTEX_SPIN_ON_OWNER, do we want to > > use that here too? > > I thought of it, but hated adding mutex naming to rwsem code -- we > already do it for cpu_relax() thanks to s390. Yah, we need to find a better name for that thing. > MUTEX_SPIN_ON_OWNER depends on SMP && !DEBUG_MUTEXES. > Right now rwsem optimistic spinning depends on SMP && RWSEM_XCHGADD_ALGORITHM. > > It might sense to add RWSEM_SPIN_ON_OWNER to encapsulate what we already > have. I don't think we want DEBUG_MUTEX dependencies in rwsems. Would > you accept such thing? Ah, I remember why we have that MUTEX_SPIN_ON_OWNER, its in the comment in mutex.c right under using it. It the games we play with ->owner isn't compatible with what DEBUG_MUTEXES wants it for. So no, you're fine with the rwsem code as is. -- 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/