Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1764800AbZANRFN (ORCPT ); Wed, 14 Jan 2009 12:05:13 -0500 Received: (majordomo@vger.kernel.org) by vger.kernel.org id S1764254AbZANREy (ORCPT ); Wed, 14 Jan 2009 12:04:54 -0500 Received: from ns.suse.de ([195.135.220.2]:33388 "EHLO mx1.suse.de" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1764253AbZANREw (ORCPT ); Wed, 14 Jan 2009 12:04:52 -0500 Date: Wed, 14 Jan 2009 18:04:45 +0100 From: Nick Piggin To: Peter Zijlstra Cc: Avi Kivity , Linus Torvalds , Ingo Molnar , "Paul E. McKenney" , Gregory Haskins , Matthew Wilcox , Andi Kleen , Chris Mason , Andrew Morton , Linux Kernel Mailing List , linux-fsdevel , linux-btrfs , Thomas Gleixner , Peter Morreale , Sven Dietrich , Dmitry Adamushko Subject: Re: [PATCH -v8][RFC] mutex: implement adaptive spinning Message-ID: <20090114170445.GA18964@wotan.suse.de> References: <1231774622.4371.96.camel@laptop> <496B6C23.8000808@redhat.com> <1231780388.4371.185.camel@laptop> <496B7EBC.6020208@redhat.com> <1231951599.14825.18.camel@laptop> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <1231951599.14825.18.camel@laptop> User-Agent: Mutt/1.5.9i Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 1808 Lines: 43 On Wed, Jan 14, 2009 at 05:46:39PM +0100, Peter Zijlstra wrote: > On Mon, 2009-01-12 at 19:32 +0200, Avi Kivity wrote: > > Peter Zijlstra wrote: > > > Spinlocks can use 'pure' MCS locks. > > > > > > > How about this, then. In mutex_lock(), keep wait_lock locked and only > > release it when scheduling out. Waiter spinning naturally follows. If > > spinlocks are cache friendly (are they today?) > > (no they're not, Nick's ticket locks still spin on a shared cacheline > IIRC -- the MCS locks mentioned could fix this) It reminds me. I wrote a basic variation of MCS spinlocks a while back. And converted dcache lock to use it, which showed large dbench improvements on a big machine (of course for different reasons than the dbench improvements in this threaed). http://lkml.org/lkml/2008/8/28/24 Each "lock" object is sane in size because given set of spin-local queues may only be used once per lock stack. But any spinlocks within a mutex acquisition will always be at the bottom of such a stack anyway, by definition. If you can use any code or concept for your code, that would be great. > > we inherit that. If > > there is no contention on the mutex, then we don't need to reacquire the > > wait_lock on mutex_unlock() (not that the atomic op is that expensive > > these days). > > That might actually work, although we'd have to move the > __mutex_slowpath_needs_to_unlock() branch outside wait_lock otherwise > we'll deadlock :-) > > It might be worth trying this if we get serious fairness issues with the > current construct. -- 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/