linux-mm.kvack.org archive mirror
 help / color / mirror / Atom feed
* [PATCH 0/2] rwsem: performance enhancements for systems with many cores
@ 2013-06-21 23:51 Tim Chen
  2013-06-22  0:00 ` Davidlohr Bueso
  0 siblings, 1 reply; 5+ messages in thread
From: Tim Chen @ 2013-06-21 23:51 UTC (permalink / raw)
  To: Ingo Molnar, Andrew Morton
  Cc: Andrea Arcangeli, Alex Shi, Andi Kleen, Michel Lespinasse,
	Davidlohr Bueso, Matthew R Wilcox, Dave Hansen, Peter Zijlstra,
	Rik van Riel, Tim Chen, linux-kernel, linux-mm

In this patchset, we introduce two optimizations to read write semaphore.
The first one reduces cache bouncing of the sem->count field
by doing a pre-read of the sem->count and avoid cmpxchg if possible.
The second patch introduces similar optimistic spining logic in
the mutex code for the writer lock acquisition of rw-sem.

Combining the two patches, 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 i_mmap was implemented as rwsem.

Feedbacks on the effectiveness of these tweaks on other workloads
will be appreciated.


Alex Shi (1):
  rwsem: check the lock before cpmxchg in down_write_trylock and    
    rwsem_do_wake

Tim Chen (1):
  rwsem: do optimistic spinning for writer lock acquisition

 Makefile                    |    2 +-
 include/asm-generic/rwsem.h |    8 +-
 include/linux/rwsem.h       |    3 +
 init/Kconfig                |    9 +++
 kernel/rwsem.c              |   29 +++++++-
 lib/rwsem.c                 |  169 ++++++++++++++++++++++++++++++++++++++-----
 6 files changed, 195 insertions(+), 25 deletions(-)

-- 
1.7.4.4


--
To unsubscribe, send a message with 'unsubscribe linux-mm' in
the body to majordomo@kvack.org.  For more info on Linux MM,
see: http://www.linux-mm.org/ .
Don't email: <a href=mailto:"dont@kvack.org"> email@kvack.org </a>

^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2013-06-24 17:47 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2013-06-21 23:51 [PATCH 0/2] rwsem: performance enhancements for systems with many cores Tim Chen
2013-06-22  0:00 ` Davidlohr Bueso
2013-06-22  0:25   ` Michel Lespinasse
2013-06-22  0:43     ` Davidlohr Bueso
2013-06-24 17:47       ` Tim Chen

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox