From: Alex Kogan <alex.kogan@oracle.com>
To: linux@armlinux.org.uk, peterz@infradead.org, mingo@redhat.com,
will.deacon@arm.com, arnd@arndb.de, longman@redhat.com,
linux-arch@vger.kernel.org, linux-arm-kernel@lists.infradead.org,
linux-kernel@vger.kernel.org, tglx@linutronix.de, bp@alien8.de,
hpa@zytor.com, x86@kernel.org
Cc: steven.sistare@oracle.com, daniel.m.jordan@oracle.com,
alex.kogan@oracle.com, dave.dice@oracle.com,
rahul.x.yadav@oracle.com
Subject: [PATCH v2 0/5] Add NUMA-awareness to qspinlock
Date: Fri, 29 Mar 2019 11:20:01 -0400 [thread overview]
Message-ID: <20190329152006.110370-1-alex.kogan@oracle.com> (raw)
This version addresses feedback from Peter and Waiman. In particular,
the CNA functionality has been moved to a separate file, and is controlled
by a config option (enabled by default if NUMA is enabled).
An optimization has been introduced to reduce the overhead of shuffling
threads between waiting queues when the lock is only lightly contended.
Summary
-------
Lock throughput can be increased by handing a lock to a waiter on the
same NUMA node as the lock holder, provided care is taken to avoid
starvation of waiters on other NUMA nodes. This patch introduces CNA
(compact NUMA-aware lock) as the slow path for qspinlock. It can be
enabled through a configuration option (NUMA_AWARE_SPINLOCKS).
CNA is a NUMA-aware version of the MCS spin-lock. Spinning threads are
organized in two queues, a main queue for threads running on the same
node as the current lock holder, and a secondary queue for threads
running on other nodes. Threads store the ID of the node on which
they are running in their queue nodes. At the unlock time, the lock
holder scans the main queue looking for a thread running on the same
node. If found (call it thread T), all threads in the main queue
between the current lock holder and T are moved to the end of the
secondary queue, and the lock is passed to T. If such T is not found, the
lock is passed to the first node in the secondary queue. Finally, if the
secondary queue is empty, the lock is passed to the next thread in the
main queue. To avoid starvation of threads in the secondary queue,
those threads are moved back to the head of the main queue
after a certain expected number of intra-node lock hand-offs.
More details are available at https://arxiv.org/abs/1810.05600.
We have done some performance evaluation with the locktorture module
as well as with several benchmarks from the will-it-scale repo.
The following locktorture results are from an Oracle X5-4 server
(four Intel Xeon E7-8895 v3 @ 2.60GHz sockets with 18 hyperthreaded
cores each). Each number represents an average (over 25 runs) of the
total number of ops (x10^7) reported at the end of each run. The
standard deviation is also reported in (), and in general, with a few
exceptions, is about 3%. The 'stock' kernel is v5.0-rc8,
commit 28d49e282665 ("locking/lockdep: Shrink struct lock_class_key"),
compiled in the default configuration. 'patch' is the modified
kernel compiled with NUMA_AWARE_SPINLOCKS not set; it is included to show
that any performance changes to the existing qspinlock implementation are
essentially noise. 'patch-CNA' is the modified kernel with
NUMA_AWARE_SPINLOCKS set; the speedup is calculated dividing
'patch-CNA' by 'stock'.
#thr stock patch patch-CNA speedup (patch-CNA/stock)
1 2.731 (0.102) 2.732 (0.093) 2.716 (0.082) 0.995
2 3.071 (0.124) 3.084 (0.109) 3.079 (0.113) 1.003
4 4.221 (0.138) 4.229 (0.087) 4.408 (0.103) 1.044
8 5.366 (0.154) 5.274 (0.094) 6.958 (0.233) 1.297
16 6.673 (0.164) 6.689 (0.095) 8.547 (0.145) 1.281
32 7.365 (0.177) 7.353 (0.183) 9.305 (0.202) 1.263
36 7.473 (0.198) 7.422 (0.181) 9.441 (0.196) 1.263
72 6.805 (0.182) 6.699 (0.170) 10.020 (0.218) 1.472
108 6.509 (0.082) 6.480 (0.115) 10.027 (0.194) 1.540
142 6.223 (0.109) 6.294 (0.100) 9.874 (0.183) 1.587
The following tables contain throughput results (ops/us) from the same
setup for will-it-scale/open1_threads:
#thr stock patch patch-CNA speedup (patch-CNA/stock)
1 0.565 (0.004) 0.567 (0.001) 0.565 (0.003) 0.999
2 0.892 (0.021) 0.899 (0.022) 0.900 (0.018) 1.009
4 1.503 (0.031) 1.527 (0.038) 1.481 (0.025) 0.985
8 1.755 (0.105) 1.714 (0.079) 1.683 (0.106) 0.959
16 1.740 (0.095) 1.752 (0.087) 1.693 (0.098) 0.973
32 0.884 (0.080) 0.908 (0.090) 1.686 (0.092) 1.906
36 0.907 (0.095) 0.894 (0.088) 1.709 (0.081) 1.885
72 0.856 (0.041) 0.858 (0.043) 1.707 (0.082) 1.994
108 0.858 (0.039) 0.869 (0.037) 1.732 (0.076) 2.020
142 0.809 (0.044) 0.854 (0.044) 1.728 (0.083) 2.135
and will-it-scale/lock2_threads:
#thr stock patch patch-CNA speedup (patch-CNA/stock)
1 1.713 (0.004) 1.715 (0.004) 1.711 (0.004) 0.999
2 2.889 (0.057) 2.864 (0.078) 2.876 (0.066) 0.995
4 4.582 (1.032) 5.066 (0.787) 4.725 (0.959) 1.031
8 4.227 (0.196) 4.104 (0.274) 4.092 (0.365) 0.968
16 4.108 (0.141) 4.057 (0.138) 4.010 (0.168) 0.976
32 2.674 (0.125) 2.625 (0.171) 3.958 (0.156) 1.480
36 2.622 (0.107) 2.553 (0.150) 3.978 (0.116) 1.517
72 2.009 (0.090) 1.998 (0.092) 3.932 (0.114) 1.957
108 2.154 (0.069) 2.089 (0.090) 3.870 (0.081) 1.797
142 1.953 (0.106) 1.943 (0.111) 3.853 (0.100) 1.973
Further comments are welcome and appreciated.
Alex Kogan (5):
locking/qspinlock: Make arch_mcs_spin_unlock_contended more generic
locking/qspinlock: Refactor the qspinlock slow path
locking/qspinlock: Introduce CNA into the slow path of qspinlock
locking/qspinlock: Introduce starvation avoidance into CNA
locking/qspinlock: Introduce the shuffle reduction optimization into
CNA
arch/arm/include/asm/mcs_spinlock.h | 4 +-
arch/x86/Kconfig | 14 ++
include/asm-generic/qspinlock_types.h | 13 ++
kernel/locking/mcs_spinlock.h | 16 ++-
kernel/locking/qspinlock.c | 77 +++++++++--
kernel/locking/qspinlock_cna.h | 245 ++++++++++++++++++++++++++++++++++
6 files changed, 354 insertions(+), 15 deletions(-)
create mode 100644 kernel/locking/qspinlock_cna.h
--
2.11.0 (Apple Git-81)
next reply other threads:[~2019-03-29 15:20 UTC|newest]
Thread overview: 76+ messages / expand[flat|nested] mbox.gz Atom feed top
2019-03-29 15:20 Alex Kogan [this message]
2019-03-29 15:20 ` [PATCH v2 0/5] Add NUMA-awareness to qspinlock Alex Kogan
2019-03-29 15:20 ` [PATCH v2 1/5] locking/qspinlock: Make arch_mcs_spin_unlock_contended more generic Alex Kogan
2019-03-29 15:20 ` Alex Kogan
2019-03-29 15:20 ` [PATCH v2 2/5] locking/qspinlock: Refactor the qspinlock slow path Alex Kogan
2019-03-29 15:20 ` Alex Kogan
2019-03-29 15:20 ` [PATCH v2 3/5] locking/qspinlock: Introduce CNA into the slow path of qspinlock Alex Kogan
2019-03-29 15:20 ` Alex Kogan
2019-04-01 9:06 ` Peter Zijlstra
2019-04-01 9:06 ` Peter Zijlstra
2019-04-01 9:33 ` Peter Zijlstra
2019-04-01 9:33 ` Peter Zijlstra
2019-04-03 15:53 ` Alex Kogan
2019-04-03 15:53 ` Alex Kogan
2019-04-03 16:10 ` Peter Zijlstra
2019-04-03 16:10 ` Peter Zijlstra
2019-04-01 9:21 ` Peter Zijlstra
2019-04-01 9:21 ` Peter Zijlstra
2019-04-01 14:36 ` Waiman Long
2019-04-01 14:36 ` Waiman Long
2019-04-02 9:43 ` Peter Zijlstra
2019-04-02 9:43 ` Peter Zijlstra
2019-04-03 15:39 ` Alex Kogan
2019-04-03 15:39 ` Alex Kogan
2019-04-03 15:48 ` Waiman Long
2019-04-03 15:48 ` Waiman Long
2019-04-03 16:01 ` Peter Zijlstra
2019-04-03 16:01 ` Peter Zijlstra
2019-04-04 5:05 ` Juergen Gross
2019-04-04 5:05 ` Juergen Gross
2019-04-04 9:38 ` Peter Zijlstra
2019-04-04 9:38 ` Peter Zijlstra
2019-04-04 18:03 ` Waiman Long
2019-04-04 18:03 ` Waiman Long
2019-06-04 23:21 ` Alex Kogan
2019-06-04 23:21 ` Alex Kogan
2019-06-05 20:40 ` Peter Zijlstra
2019-06-05 20:40 ` Peter Zijlstra
2019-06-06 15:21 ` Alex Kogan
2019-06-06 15:21 ` Alex Kogan
2019-06-06 15:32 ` Waiman Long
2019-06-06 15:32 ` Waiman Long
2019-06-06 15:42 ` Waiman Long
2019-06-06 15:42 ` Waiman Long
2019-04-03 16:33 ` Waiman Long
2019-04-03 16:33 ` Waiman Long
2019-04-03 17:16 ` Peter Zijlstra
2019-04-03 17:16 ` Peter Zijlstra
2019-04-03 17:40 ` Waiman Long
2019-04-03 17:40 ` Waiman Long
2019-04-04 2:02 ` Hanjun Guo
2019-04-04 2:02 ` Hanjun Guo
2019-04-04 3:14 ` Alex Kogan
2019-04-04 3:14 ` Alex Kogan
2019-06-11 4:22 ` liwei (GF)
2019-06-11 4:22 ` liwei (GF)
2019-06-12 4:38 ` Alex Kogan
2019-06-12 4:38 ` Alex Kogan
2019-06-12 15:05 ` Waiman Long
2019-06-12 15:05 ` Waiman Long
2019-03-29 15:20 ` [PATCH v2 4/5] locking/qspinlock: Introduce starvation avoidance into CNA Alex Kogan
2019-03-29 15:20 ` Alex Kogan
2019-04-02 10:37 ` Peter Zijlstra
2019-04-02 10:37 ` Peter Zijlstra
2019-04-03 17:06 ` Alex Kogan
2019-04-03 17:06 ` Alex Kogan
2019-03-29 15:20 ` [PATCH v2 5/5] locking/qspinlock: Introduce the shuffle reduction optimization " Alex Kogan
2019-03-29 15:20 ` Alex Kogan
2019-04-01 9:09 ` [PATCH v2 0/5] Add NUMA-awareness to qspinlock Peter Zijlstra
2019-04-01 9:09 ` Peter Zijlstra
2019-04-03 17:13 ` Alex Kogan
2019-04-03 17:13 ` Alex Kogan
2019-07-03 11:58 ` Jan Glauber
2019-07-03 11:58 ` Jan Glauber
2019-07-12 8:12 ` Hanjun Guo
2019-07-12 8:12 ` Hanjun Guo
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=20190329152006.110370-1-alex.kogan@oracle.com \
--to=alex.kogan@oracle.com \
--cc=arnd@arndb.de \
--cc=bp@alien8.de \
--cc=daniel.m.jordan@oracle.com \
--cc=dave.dice@oracle.com \
--cc=hpa@zytor.com \
--cc=linux-arch@vger.kernel.org \
--cc=linux-arm-kernel@lists.infradead.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux@armlinux.org.uk \
--cc=longman@redhat.com \
--cc=mingo@redhat.com \
--cc=peterz@infradead.org \
--cc=rahul.x.yadav@oracle.com \
--cc=steven.sistare@oracle.com \
--cc=tglx@linutronix.de \
--cc=will.deacon@arm.com \
--cc=x86@kernel.org \
/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