From: Waiman Long <Waiman.Long@hp.com>
To: Peter Zijlstra <peterz@infradead.org>,
Ingo Molnar <mingo@redhat.com>, Arnd Bergmann <arnd@arndb.de>
Cc: linux-arch@vger.kernel.org, linux-kernel@vger.kernel.org,
Will Deacon <will.deacon@arm.com>,
Scott J Norton <scott.norton@hp.com>,
Douglas Hatch <doug.hatch@hp.com>,
Waiman Long <Waiman.Long@hp.com>
Subject: [PATCH v5 0/3] locking/qrwlock: More optimizations in qrwlock
Date: Fri, 19 Jun 2015 11:49:59 -0400 [thread overview]
Message-ID: <1434729002-57724-1-git-send-email-Waiman.Long@hp.com> (raw)
v4->v5:
- Add a new patch to rename function names to sync up to qspinlock
naming convention.
- Move the extended qrwlock structure to the header file as requested
by Will Deacon so that it can also be used in the ARM's architecture
specific code.
v3->v4:
- Remove the unnecessary _QW_WMASK check in
queue_read_lock_slowpath().
v2->v3:
- Fix incorrect commit log message in patch 1.
v1->v2:
- Add microbenchmark data for the second patch
This patch set contains 2 patches on qrwlock. The first one is to
optimize the interrupt context reader slowpath. The second one is
to optimize the writer slowpath.
*** BLURB HERE ***
Waiman Long (3):
locking/qrwlock: Rename functions to queued_*()
locking/qrwlock: Better optimization for interrupt context readers
locking/qrwlock: Don't contend with readers when setting _QW_WAITING
arch/x86/include/asm/qrwlock.h | 7 ++--
include/asm-generic/qrwlock.h | 58 +++++++++++++++++-----------------
include/asm-generic/qrwlock_types.h | 18 ++++++++++-
kernel/locking/qrwlock.c | 29 ++++++++---------
4 files changed, 63 insertions(+), 49 deletions(-)
WARNING: multiple messages have this Message-ID (diff)
From: Waiman Long <Waiman.Long@hp.com>
To: Peter Zijlstra <peterz@infradead.org>,
Ingo Molnar <mingo@redhat.com>, Arnd Bergmann <arnd@arndb.de>
Cc: linux-arch@vger.kernel.org, linux-kernel@vger.kernel.org,
Will Deacon <will.deacon@arm.com>,
Scott J Norton <scott.norton@hp.com>,
Douglas Hatch <doug.hatch@hp.com>,
Waiman Long <Waiman.Long@hp.com>
Subject: [PATCH v5 0/3] locking/qrwlock: More optimizations in qrwlock
Date: Fri, 19 Jun 2015 11:49:59 -0400 [thread overview]
Message-ID: <1434729002-57724-1-git-send-email-Waiman.Long@hp.com> (raw)
Message-ID: <20150619154959.xLA6pClSKtXNg-F4Yrcx4JDYiwpEFG6Ts-YlCvGYzxU@z> (raw)
v4->v5:
- Add a new patch to rename function names to sync up to qspinlock
naming convention.
- Move the extended qrwlock structure to the header file as requested
by Will Deacon so that it can also be used in the ARM's architecture
specific code.
v3->v4:
- Remove the unnecessary _QW_WMASK check in
queue_read_lock_slowpath().
v2->v3:
- Fix incorrect commit log message in patch 1.
v1->v2:
- Add microbenchmark data for the second patch
This patch set contains 2 patches on qrwlock. The first one is to
optimize the interrupt context reader slowpath. The second one is
to optimize the writer slowpath.
*** BLURB HERE ***
Waiman Long (3):
locking/qrwlock: Rename functions to queued_*()
locking/qrwlock: Better optimization for interrupt context readers
locking/qrwlock: Don't contend with readers when setting _QW_WAITING
arch/x86/include/asm/qrwlock.h | 7 ++--
include/asm-generic/qrwlock.h | 58 +++++++++++++++++-----------------
include/asm-generic/qrwlock_types.h | 18 ++++++++++-
kernel/locking/qrwlock.c | 29 ++++++++---------
4 files changed, 63 insertions(+), 49 deletions(-)
--
To unsubscribe from this list: send the line "unsubscribe linux-arch" in
next reply other threads:[~2015-06-19 15:51 UTC|newest]
Thread overview: 16+ messages / expand[flat|nested] mbox.gz Atom feed top
2015-06-19 15:49 Waiman Long [this message]
2015-06-19 15:49 ` [PATCH v5 0/3] locking/qrwlock: More optimizations in qrwlock Waiman Long
2015-06-19 15:50 ` [PATCH v5 1/3] locking/qrwlock: Rename functions to queued_*() Waiman Long
2015-06-19 15:50 ` Waiman Long
2015-06-19 15:50 ` [PATCH v5 2/3] locking/qrwlock: Better optimization for interrupt context readers Waiman Long
2015-06-19 15:50 ` Waiman Long
2015-06-19 15:50 ` [PATCH v5 3/3] locking/qrwlock: Don't contend with readers when setting _QW_WAITING Waiman Long
2015-06-19 15:50 ` Waiman Long
2015-06-22 16:21 ` Will Deacon
2015-06-22 16:21 ` Will Deacon
2015-06-23 2:57 ` Waiman Long
2015-06-23 2:57 ` Waiman Long
2015-06-23 8:37 ` Will Deacon
2015-06-25 18:35 ` Peter Zijlstra
2015-06-25 20:33 ` Waiman Long
2015-06-26 11:14 ` Will Deacon
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=1434729002-57724-1-git-send-email-Waiman.Long@hp.com \
--to=waiman.long@hp.com \
--cc=arnd@arndb.de \
--cc=doug.hatch@hp.com \
--cc=linux-arch@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=mingo@redhat.com \
--cc=peterz@infradead.org \
--cc=scott.norton@hp.com \
--cc=will.deacon@arm.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