summaryrefslogtreecommitdiff
path: root/kernel/locking/qspinlock.c
AgeCommit message (Expand)AuthorFilesLines
2019-05-30treewide: Replace GPLv2 boilerplate/reference with SPDX - rule 157Thomas Gleixner1-10/+1
2019-04-10locking/qspinlock_stat: Introduce generic lockevent_*() counting APIsWaiman Long1-4/+4
2019-02-28locking/qspinlock: Remove unnecessary BUG_ON() callWaiman Long1-3/+0
2019-02-04locking/qspinlock_stat: Track the no MCS node available caseWaiman Long1-1/+2
2019-02-04locking/qspinlock: Handle > 4 slowpath nesting levelsWaiman Long1-0/+15
2018-10-17locking/pvqspinlock: Extend node size when pvqspinlock is configuredWaiman Long1-8/+26
2018-10-17locking/qspinlock_stat: Count instances of nested lock slowpathsWaiman Long1-0/+5
2018-10-16locking/qspinlock, x86: Provide liveness guaranteePeter Zijlstra1-1/+15
2018-10-16locking/qspinlock: Rework some commentsPeter Zijlstra1-10/+26
2018-10-16locking/qspinlock: Re-order codePeter Zijlstra1-29/+27
2018-04-27locking/qspinlock: Add stat tracking for pending vs. slowpathWaiman Long1-3/+11
2018-04-27locking/qspinlock: Use try_cmpxchg() instead of cmpxchg() when lockingWill Deacon1-10/+9
2018-04-27locking/qspinlock: Elide back-to-back RELEASE operations with smp_wmb()Will Deacon1-16/+17
2018-04-27locking/qspinlock: Use smp_cond_load_relaxed() to wait for next nodeWill Deacon1-4/+2
2018-04-27locking/qspinlock: Use atomic_cond_read_acquire()Will Deacon1-6/+6
2018-04-27locking/qspinlock: Kill cmpxchg() loop when claiming lock from head of queueWill Deacon1-11/+8
2018-04-27locking/qspinlock: Remove unbounded cmpxchg() loop from locking slowpathWill Deacon1-44/+58
2018-04-27locking/qspinlock: Bound spinning on pending->locked transition in slowpathWill Deacon1-3/+17
2018-04-27locking/qspinlock: Merge 'struct __qspinlock' into 'struct qspinlock'Will Deacon1-43/+3
2018-02-13locking/qspinlock: Ensure node->count is updated before initialising nodeWill Deacon1-0/+8
2018-02-13locking/qspinlock: Ensure node is initialised before updating prev->nextWill Deacon1-6/+7
2017-12-04locking: Remove smp_read_barrier_depends() from queued_spin_lock_slowpath()Paul E. McKenney1-7/+5
2017-08-17locking: Remove spin_unlock_wait() generic definitionsPaul E. McKenney1-117/+0
2017-07-08locking/qspinlock: Explicitly include asm/prefetch.hStafford Horne1-0/+1
2016-06-27locking/qspinlock: Use __this_cpu_dec() instead of full-blown this_cpu_dec()Pan Xinhui1-1/+1
2016-06-14locking/barriers: Introduce smp_acquire__after_ctrl_dep()Peter Zijlstra1-1/+1
2016-06-14locking/barriers: Replace smp_cond_acquire() with smp_cond_load_acquire()Peter Zijlstra1-6/+6
2016-06-08locking/qspinlock: Add commentsPeter Zijlstra1-0/+57
2016-06-08locking/qspinlock: Clarify xchg_tail() orderingPeter Zijlstra1-2/+13
2016-06-08locking/qspinlock: Fix spin_unlock_wait() some morePeter Zijlstra1-0/+60
2016-02-29locking/qspinlock: Use smp_cond_acquire() in pending codeWaiman Long1-4/+3
2015-12-04locking/pvqspinlock: Queue node adaptive spinningWaiman Long1-2/+3
2015-12-04locking/pvqspinlock: Allow limited lock stealingWaiman Long1-6/+20
2015-12-04locking, sched: Introduce smp_cond_acquire() and use itPeter Zijlstra1-2/+1
2015-11-23locking/qspinlock: Avoid redundant read of next pointerWaiman Long1-3/+6
2015-11-23locking/qspinlock: Prefetch the next node cachelineWaiman Long1-0/+10
2015-11-23locking/qspinlock: Use _acquire/_release() versions of cmpxchg() & xchg()Waiman Long1-5/+24
2015-09-11locking/qspinlock/x86: Fix performance regression under unaccelerated VMsPeter Zijlstra1-1/+1
2015-08-03locking/pvqspinlock: Only kick CPU at unlock timeWaiman Long1-3/+3
2015-05-08locking/pvqspinlock: Implement simple paravirt support for the qspinlockWaiman Long1-1/+67
2015-05-08locking/qspinlock: Revert to test-and-set on hypervisorsPeter Zijlstra (Intel)1-0/+3
2015-05-08locking/qspinlock: Use a simple write to grab the lockWaiman Long1-16/+50
2015-05-08locking/qspinlock: Optimize for smaller NR_CPUSPeter Zijlstra (Intel)1-1/+68
2015-05-08locking/qspinlock: Extract out code snippets for the next patchWaiman Long1-31/+48
2015-05-08locking/qspinlock: Add pending bitPeter Zijlstra (Intel)1-21/+98
2015-05-08locking/qspinlock: Introduce a simple generic 4-byte queued spinlockWaiman Long1-0/+209