diff options
| author | Pan Xinhui <xinhui.pan@linux.vnet.ibm.com> | 2016-06-14 02:37:27 -0400 |
|---|---|---|
| committer | Ingo Molnar <mingo@kernel.org> | 2016-06-27 05:37:41 -0400 |
| commit | 0dceeaf599e6d9b8bd908ba4bd3dfee84aa26be2 (patch) | |
| tree | 901f7641d6bc6ed48fdffaee6f85f155e0fb8a07 /kernel/locking | |
| parent | ebff09a6ff164aec2b33bf1f9a488c45ac108413 (diff) | |
locking/qspinlock: Use __this_cpu_dec() instead of full-blown this_cpu_dec()
queued_spin_lock_slowpath() should not worry about another
queued_spin_lock_slowpath() running in interrupt context and
changing node->count by accident, because node->count keeps
the same value every time we enter/leave queued_spin_lock_slowpath().
On some architectures this_cpu_dec() will save/restore irq flags,
which has high overhead. Use the much cheaper __this_cpu_dec() instead.
Signed-off-by: Pan Xinhui <xinhui.pan@linux.vnet.ibm.com>
Signed-off-by: Peter Zijlstra (Intel) <peterz@infradead.org>
Cc: Linus Torvalds <torvalds@linux-foundation.org>
Cc: Mike Galbraith <efault@gmx.de>
Cc: Peter Zijlstra <peterz@infradead.org>
Cc: Thomas Gleixner <tglx@linutronix.de>
Cc: Waiman.Long@hpe.com
Link: http://lkml.kernel.org/r/1465886247-3773-1-git-send-email-xinhui.pan@linux.vnet.ibm.com
[ Rewrote changelog. ]
Signed-off-by: Ingo Molnar <mingo@kernel.org>
Diffstat (limited to 'kernel/locking')
| -rw-r--r-- | kernel/locking/qspinlock.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/kernel/locking/qspinlock.c b/kernel/locking/qspinlock.c index 730655533440..b2caec7315af 100644 --- a/kernel/locking/qspinlock.c +++ b/kernel/locking/qspinlock.c | |||
| @@ -619,7 +619,7 @@ release: | |||
| 619 | /* | 619 | /* |
| 620 | * release the node | 620 | * release the node |
| 621 | */ | 621 | */ |
| 622 | this_cpu_dec(mcs_nodes[0].count); | 622 | __this_cpu_dec(mcs_nodes[0].count); |
| 623 | } | 623 | } |
| 624 | EXPORT_SYMBOL(queued_spin_lock_slowpath); | 624 | EXPORT_SYMBOL(queued_spin_lock_slowpath); |
| 625 | 625 | ||
