Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1422432 > unrolled thread
| Started by | Waiman Long <Waiman.Long@hpe.com> |
|---|---|
| First post | 2016-06-15 00:50 +0200 |
| Last post | 2016-06-16 04:20 +0200 |
| Articles | 4 — 3 participants |
Back to article view | Back to linux.kernel
[RFC PATCH-tip v2 0/6] locking/rwsem: Enable reader optimistic spinning Waiman Long <Waiman.Long@hpe.com> - 2016-06-15 00:50 +0200
[RFC PATCH-tip v2 2/6] locking/rwsem: Stop active read lock ASAP Waiman Long <Waiman.Long@hpe.com> - 2016-06-15 01:00 +0200
Re: [RFC PATCH-tip v2 2/6] locking/rwsem: Stop active read lock ASAP Peter Zijlstra <peterz@infradead.org> - 2016-06-15 19:30 +0200
Re: [RFC PATCH-tip v2 2/6] locking/rwsem: Stop active read lock ASAP Davidlohr Bueso <dave@stgolabs.net> - 2016-06-16 04:20 +0200
| From | Waiman Long <Waiman.Long@hpe.com> |
|---|---|
| Date | 2016-06-15 00:50 +0200 |
| Subject | [RFC PATCH-tip v2 0/6] locking/rwsem: Enable reader optimistic spinning |
| Message-ID | <rK5jH-2zl-5@gated-at.bofh.it> |
v1->v2: - Fixed a 0day build error. - Add a new patch 1 to make osq_lock() a proper acquire memory barrier. - Replaced the explicit enabling of reader spinning by an autotuning mechanism that disable reader spinning for those rwsems that may not benefit from reader spinning. - Remove the last xfs patch as it is no longer necessary. This patchset enables more aggressive optimistic spinning on both readers and writers waiting on a writer or reader owned lock. Spinning on writer is done by looking at the on_cpu flag of the lock owner. Spinning on readers, on the other hand, is count-based as there is no easy way to figure out if all the readers are running. The spinner will stop spinning once the count goes to 0. Because of that, spinning on readers may hurt performance in some cases. An autotuning mechanism is used to determine if a rwsem can benefit from reader optimistic spinning. Patch 1 updates the osq_lock() function to make it a proper acquire memory barrier. Patch 2 reduces the length of the blocking window after a read locking attempt where writer lock stealing is disabled because of the active read lock. It can improve rwsem performance for contended lock. It is independent of the rest of the patchset. Patch 3 puts in place the autotuning mechanism to check if reader optimistic spinning should be used or not. Patch 4 moves down the rwsem_down_read_failed() function for later patches. Patch 5 changes RWSEM_WAITING_BIAS to simpify reader trylock code. Patch 6 enables readers to do optimistic spinning. Waiman Long (6): locking/osq: Make lock/unlock proper acquire/release barrier locking/rwsem: Stop active read lock ASAP locking/rwsem: Enable count-based spinning on reader locking/rwsem: move down rwsem_down_read_failed function locking/rwsem: Change RWSEM_WAITING_BIAS for better disambiguation locking/rwsem: Enable spinning readers arch/alpha/include/asm/rwsem.h | 7 +- arch/ia64/include/asm/rwsem.h | 6 +- arch/s390/include/asm/rwsem.h | 6 +- arch/x86/include/asm/rwsem.h | 13 ++- include/asm-generic/rwsem.h | 9 +- include/linux/rwsem.h | 19 +++- kernel/locking/osq_lock.c | 4 +- kernel/locking/rwsem-xadd.c | 238 ++++++++++++++++++++++++++++------------ 8 files changed, 209 insertions(+), 93 deletions(-)
[toc] | [next] | [standalone]
| From | Waiman Long <Waiman.Long@hpe.com> |
|---|---|
| Date | 2016-06-15 01:00 +0200 |
| Subject | [RFC PATCH-tip v2 2/6] locking/rwsem: Stop active read lock ASAP |
| Message-ID | <rK5to-2E2-31@gated-at.bofh.it> |
| In reply to | #1422432 |
Currently, when down_read() fails, the active read locking isn't undone
until the rwsem_down_read_failed() function grabs the wait_lock. If the
wait_lock is contended, it may takes a while to get the lock. During
that period, writer lock stealing will be disabled because of the
active read lock.
This patch will release the active read lock ASAP so that writer lock
stealing can happen sooner. The only downside is when the reader is
the first one in the wait queue as it has to issue another atomic
operation to update the count.
On a 4-socket Haswell machine running on a 4.7-rc1 tip-based kernel,
the fio test with multithreaded randrw and randwrite tests on the
same file on a XFS partition on top of a NVDIMM with DAX were run,
the aggregated bandwidths before and after the patch were as follows:
Test BW before patch BW after patch % change
---- --------------- -------------- --------
randrw 1210 MB/s 1352 MB/s +12%
randwrite 1622 MB/s 1710 MB/s +5.4%
The write-only microbench also showed improvement because some read
locking was done by the XFS code.
Signed-off-by: Waiman Long <Waiman.Long@hpe.com>
---
kernel/locking/rwsem-xadd.c | 19 ++++++++++++++-----
1 files changed, 14 insertions(+), 5 deletions(-)
diff --git a/kernel/locking/rwsem-xadd.c b/kernel/locking/rwsem-xadd.c
index 2031281..29027c6 100644
--- a/kernel/locking/rwsem-xadd.c
+++ b/kernel/locking/rwsem-xadd.c
@@ -230,11 +230,18 @@ __rwsem_mark_wake(struct rw_semaphore *sem,
__visible
struct rw_semaphore __sched *rwsem_down_read_failed(struct rw_semaphore *sem)
{
- long count, adjustment = -RWSEM_ACTIVE_READ_BIAS;
+ long count, adjustment = 0;
struct rwsem_waiter waiter;
struct task_struct *tsk = current;
WAKE_Q(wake_q);
+ /*
+ * Undo read bias from down_read operation, stop active locking.
+ * Doing that after taking the wait_lock may block writer lock
+ * stealing for too long.
+ */
+ atomic_long_add(-RWSEM_ACTIVE_READ_BIAS, &sem->count);
+
/* set up my own style of waitqueue */
waiter.task = tsk;
waiter.type = RWSEM_WAITING_FOR_READ;
@@ -244,8 +251,11 @@ struct rw_semaphore __sched *rwsem_down_read_failed(struct rw_semaphore *sem)
adjustment += RWSEM_WAITING_BIAS;
list_add_tail(&waiter.list, &sem->wait_list);
- /* we're now waiting on the lock, but no longer actively locking */
- count = atomic_long_add_return(adjustment, &sem->count);
+ /* we're now waiting on the lock */
+ if (adjustment)
+ count = atomic_long_add_return(adjustment, &sem->count);
+ else
+ count = atomic_long_read(&sem->count);
/* If there are no active locks, wake the front queued process(es).
*
@@ -253,8 +263,7 @@ struct rw_semaphore __sched *rwsem_down_read_failed(struct rw_semaphore *sem)
* wake our own waiter to join the existing active readers !
*/
if (count == RWSEM_WAITING_BIAS ||
- (count > RWSEM_WAITING_BIAS &&
- adjustment != -RWSEM_ACTIVE_READ_BIAS))
+ (count > RWSEM_WAITING_BIAS && adjustment))
sem = __rwsem_mark_wake(sem, RWSEM_WAKE_ANY, &wake_q);
raw_spin_unlock_irq(&sem->wait_lock);
--
1.7.1
[toc] | [prev] | [next] | [standalone]
| From | Peter Zijlstra <peterz@infradead.org> |
|---|---|
| Date | 2016-06-15 19:30 +0200 |
| Subject | Re: [RFC PATCH-tip v2 2/6] locking/rwsem: Stop active read lock ASAP |
| Message-ID | <rKmNz-5ul-17@gated-at.bofh.it> |
| In reply to | #1422442 |
On Tue, Jun 14, 2016 at 06:48:05PM -0400, Waiman Long wrote: > Currently, when down_read() fails, the active read locking isn't undone > until the rwsem_down_read_failed() function grabs the wait_lock. If the > wait_lock is contended, it may takes a while to get the lock. During > that period, writer lock stealing will be disabled because of the > active read lock. > > This patch will release the active read lock ASAP so that writer lock > stealing can happen sooner. The only downside is when the reader is > the first one in the wait queue as it has to issue another atomic > operation to update the count. > > On a 4-socket Haswell machine running on a 4.7-rc1 tip-based kernel, > the fio test with multithreaded randrw and randwrite tests on the > same file on a XFS partition on top of a NVDIMM with DAX were run, > the aggregated bandwidths before and after the patch were as follows: > > Test BW before patch BW after patch % change > ---- --------------- -------------- -------- > randrw 1210 MB/s 1352 MB/s +12% > randwrite 1622 MB/s 1710 MB/s +5.4% > > The write-only microbench also showed improvement because some read > locking was done by the XFS code. How does a reader only micro-bench react? I'm thinking the extra atomic might hurt a bit.
[toc] | [prev] | [next] | [standalone]
| From | Davidlohr Bueso <dave@stgolabs.net> |
|---|---|
| Date | 2016-06-16 04:20 +0200 |
| Subject | Re: [RFC PATCH-tip v2 2/6] locking/rwsem: Stop active read lock ASAP |
| Message-ID | <rKv4t-2mG-1@gated-at.bofh.it> |
| In reply to | #1423252 |
On Wed, 15 Jun 2016, Waiman Long wrote: >I think there will be a little bit of performance impact for a >workload that produce just the right amount of rwsem contentions. I'm not saying the change doesn't make sense, but this is the sort of thing that will show nice numbers in one workload and go bite you in another. Thanks, Davidlohr
[toc] | [prev] | [standalone]
Back to top | Article view | linux.kernel
csiph-web