linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: Tim Chen <tim.c.chen@linux.intel.com>
To: Peter Zijlstra <peterz@infradead.org>
Cc: Ingo Molnar <mingo@elte.hu>,
	Andrew Morton <akpm@linux-foundation.org>,
	Andrea Arcangeli <aarcange@redhat.com>,
	Alex Shi <alex.shi@intel.com>, Andi Kleen <andi@firstfloor.org>,
	Michel Lespinasse <walken@google.com>,
	Davidlohr Bueso <davidlohr.bueso@hp.com>,
	Matthew R Wilcox <matthew.r.wilcox@intel.com>,
	Dave Hansen <dave.hansen@intel.com>,
	Rik van Riel <riel@redhat.com>,
	linux-kernel@vger.kernel.org, linux-mm <linux-mm@kvack.org>
Subject: Re: [PATCH 2/2] rwsem: do optimistic spinning for writer lock acquisition
Date: Mon, 24 Jun 2013 09:36:02 -0700	[thread overview]
Message-ID: <1372091762.22432.16.camel@schen9-DESK> (raw)
In-Reply-To: <20130624084645.GL28407@twins.programming.kicks-ass.net>

On Mon, 2013-06-24 at 10:46 +0200, Peter Zijlstra wrote:
> On Fri, Jun 21, 2013 at 04:51:40PM -0700, Tim Chen wrote:
> > Introduce in this patch optimistic spinning for writer lock
> > acquisition in read write semaphore.  The logic is
> > similar to the optimistic spinning in mutex but without
> > the MCS lock queueing of the spinner.  This provides a
> > better chance for a writer to acquire the lock before
> > being we block it and put it to sleep.
> > 
> > Disabling of pre-emption during optimistic spinning
> > was suggested by Davidlohr Bueso.  It
> > improved performance of aim7 for his test suite.
> > 
> > Combined with the patch to avoid unnecesary cmpxchg,
> > in testing by Davidlohr Bueso on aim7 workloads
> > on 8 socket 80 cores system, he saw improvements of
> > alltests (+14.5%), custom (+17%), disk (+11%), high_systime
> > (+5%), shared (+15%) and short (+4%), most of them after around 500
> > users when he implemented i_mmap as rwsem.
> > 
> > Signed-off-by: Tim Chen <tim.c.chen@linux.intel.com>
> > ---
> >  Makefile              |    2 +-
> >  include/linux/rwsem.h |    3 +
> >  init/Kconfig          |    9 +++
> >  kernel/rwsem.c        |   29 +++++++++-
> >  lib/rwsem.c           |  148 +++++++++++++++++++++++++++++++++++++++++++++----
> >  5 files changed, 178 insertions(+), 13 deletions(-)
> > 
> > diff --git a/Makefile b/Makefile
> > index 49aa84b..7d1ef64 100644
> > --- a/Makefile
> > +++ b/Makefile
> > @@ -1,7 +1,7 @@
> >  VERSION = 3
> >  PATCHLEVEL = 10
> >  SUBLEVEL = 0
> > -EXTRAVERSION = -rc4
> > +EXTRAVERSION = -rc4-optspin4
> >  NAME = Unicycling Gorilla
> >  
> >  # *DOCUMENTATION*
> 
> I'm fairly sure we don't want to commit this hunk ;-)

Fat fingers.  Thanks for catching.

Tim


      reply	other threads:[~2013-06-24 16:36 UTC|newest]

Thread overview: 25+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
     [not found] <cover.1371855277.git.tim.c.chen@linux.intel.com>
2013-06-21 23:51 ` [PATCH 1/2] rwsem: check the lock before cpmxchg in down_write_trylock and rwsem_do_wake Tim Chen
2013-06-22  0:10   ` Alex Shi
2013-06-22  0:15     ` Davidlohr Bueso
2013-06-24 16:34     ` Tim Chen
2013-06-22  7:21   ` Peter Hurley
2013-06-23  1:16     ` Alex Shi
2013-06-23  5:10       ` Andi Kleen
2013-06-23 11:52         ` Alex Shi
2013-06-21 23:51 ` [PATCH 2/2] rwsem: do optimistic spinning for writer lock acquisition Tim Chen
2013-06-22  0:00   ` Davidlohr Bueso
2013-06-22  7:57   ` Peter Hurley
2013-06-23 20:03     ` Davidlohr Bueso
2013-06-24 17:11       ` Tim Chen
2013-06-24 18:49         ` Peter Hurley
2013-06-24 19:13           ` Tim Chen
2013-06-24 20:32             ` Peter Hurley
2013-06-24 20:17           ` Tim Chen
2013-06-24 20:48             ` Peter Hurley
2013-06-24 21:30               ` Tim Chen
2013-06-25  7:37             ` Peter Zijlstra
2013-06-25 16:00               ` Tim Chen
2013-06-24 21:58     ` Tim Chen
2013-06-24 22:08       ` Peter Hurley
2013-06-24  8:46   ` Peter Zijlstra
2013-06-24 16:36     ` Tim Chen [this message]

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1372091762.22432.16.camel@schen9-DESK \
    --to=tim.c.chen@linux.intel.com \
    --cc=aarcange@redhat.com \
    --cc=akpm@linux-foundation.org \
    --cc=alex.shi@intel.com \
    --cc=andi@firstfloor.org \
    --cc=dave.hansen@intel.com \
    --cc=davidlohr.bueso@hp.com \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-mm@kvack.org \
    --cc=matthew.r.wilcox@intel.com \
    --cc=mingo@elte.hu \
    --cc=peterz@infradead.org \
    --cc=riel@redhat.com \
    --cc=walken@google.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).