From mboxrd@z Thu Jan 1 00:00:00 1970 From: Peter Zijlstra Subject: Re: [PATCH -v8][RFC] mutex: implement adaptive spinning Date: Wed, 14 Jan 2009 17:46:39 +0100 Message-ID: <1231951599.14825.18.camel@laptop> References: <1231774622.4371.96.camel@laptop> <496B6C23.8000808@redhat.com> <1231780388.4371.185.camel@laptop> <496B7EBC.6020208@redhat.com> Mime-Version: 1.0 Content-Type: text/plain Content-Transfer-Encoding: 7bit Cc: 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 , Nick Piggin , Peter Morreale , Sven Dietrich , Dmitry Adamushko To: Avi Kivity Return-path: Received: from casper.infradead.org ([85.118.1.10]:56787 "EHLO casper.infradead.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1761484AbZANQre (ORCPT ); Wed, 14 Jan 2009 11:47:34 -0500 In-Reply-To: <496B7EBC.6020208@redhat.com> Sender: linux-fsdevel-owner@vger.kernel.org List-ID: 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) > 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.