summaryrefslogtreecommitdiffstats
path: root/kernel/locking
Commit message (Expand)AuthorAgeFilesLines
* treewide: kzalloc() -> kcalloc()Kees Cook2018-06-121-2/+4
* treewide: kmalloc() -> kmalloc_array()Kees Cook2018-06-121-2/+6
* Merge branch 'locking-core-for-linus' of git://git.kernel.org/pub/scm/linux/k...Linus Torvalds2018-06-047-236/+177
|\
| * locking/rwsem: Simplify the is-owner-spinnable checksOleg Nesterov2018-05-251-12/+13
| * Merge branch 'linus' into locking/core, to pick up fixesIngo Molnar2018-05-253-21/+30
| |\
| * | locking/lockdep: Move sanity check to inside lockdep_print_held_locks()Tetsuo Handa2018-05-141-16/+13
| * | locking/lockdep: Use for_each_process_thread() for debug_show_all_locks()Tetsuo Handa2018-05-141-35/+8
| * | locking/mutex: Optimize __mutex_trylock_fast()Peter Zijlstra2018-05-041-1/+2
| * | locking/qspinlock: Remove duplicate clear_pending() function from PV codeWill Deacon2018-04-271-5/+0
| * | locking/qspinlock: Add stat tracking for pending vs. slowpathWaiman Long2018-04-273-12/+18
| * | locking/qspinlock: Use try_cmpxchg() instead of cmpxchg() when lockingWill Deacon2018-04-271-10/+9
| * | locking/qspinlock: Elide back-to-back RELEASE operations with smp_wmb()Will Deacon2018-04-271-16/+17
| * | locking/qspinlock: Use smp_cond_load_relaxed() to wait for next nodeWill Deacon2018-04-271-4/+2
| * | locking/mcs: Use smp_cond_load_acquire() in MCS spin loopJason Low2018-04-271-4/+6
| * | locking/qspinlock: Use atomic_cond_read_acquire()Will Deacon2018-04-271-6/+6
| * | locking/qspinlock: Kill cmpxchg() loop when claiming lock from head of queueWill Deacon2018-04-271-11/+8
| * | locking/qspinlock: Remove unbounded cmpxchg() loop from locking slowpathWill Deacon2018-04-272-49/+58
| * | locking/qspinlock: Bound spinning on pending->locked transition in slowpathWill Deacon2018-04-271-3/+17
| * | locking/qspinlock: Merge 'struct __qspinlock' into 'struct qspinlock'Will Deacon2018-04-272-66/+14
* | | Merge branch 'hch.procfs' of git://git.kernel.org/pub/scm/linux/kernel/git/vi...Linus Torvalds2018-06-041-42/+3
|\ \ \ | |_|/ |/| |
| * | proc: introduce proc_create_single{,_data}Christoph Hellwig2018-05-161-15/+1
| * | proc: introduce proc_create_seq{,_data}Christoph Hellwig2018-05-161-27/+2
| |/
* | locking/percpu-rwsem: Annotate rwsem ownership transfer by setting RWSEM_OWNE...Waiman Long2018-05-161-0/+2
* | locking/rwsem: Add a new RWSEM_ANONYMOUSLY_OWNED flagWaiman Long2018-05-163-21/+28
|/
* locking/rwsem: Add DEBUG_RWSEMS to look for lock/unlock mismatchesWaiman Long2018-03-312-1/+11
* Merge branch 'linus' into locking/core, to pick up fixesIngo Molnar2018-03-311-7/+30
|\
| * locking/mutex: Improve documentationMatthew Wilcox2018-03-201-7/+30
* | lockdep: Make the lock debug output more usefulTetsuo Handa2018-03-291-2/+2
* | locking/rtmutex: Handle non enqueued waiters gracefully in remove_waiter()Peter Zijlstra2018-03-282-7/+7
* | Merge tag 'v4.16-rc5' into locking/core, to pick up fixesIngo Molnar2018-03-121-2/+3
|\ \ | |/
| * rtmutex: Make rt_mutex_futex_unlock() safe for irq-off callsitesBoqun Feng2018-03-091-2/+3
* | locking/lockdep: Show unadorned pointersBorislav Petkov2018-02-281-12/+12
|/
* locking/qspinlock: Ensure node->count is updated before initialising nodeWill Deacon2018-02-131-0/+8
* locking/qspinlock: Ensure node is initialised before updating prev->nextWill Deacon2018-02-131-6/+7
* Merge branch 'locking-core-for-linus' of git://git.kernel.org/pub/scm/linux/k...Linus Torvalds2018-01-301-42/+47
|\
| * lockdep: Make lockdep checking constantMatthew Wilcox2018-01-181-6/+7
| * lockdep: Assign lock keys on registrationMatthew Wilcox2018-01-181-36/+40
* | Merge branch 'core-rcu-for-linus' of git://git.kernel.org/pub/scm/linux/kerne...Linus Torvalds2018-01-302-63/+57
|\ \
| * \ Merge branch 'for-mingo' of git://git.kernel.org/pub/scm/linux/kernel/git/pau...Ingo Molnar2018-01-032-63/+57
| |\ \
| | | \
| | | \
| | *-. \ Merge branches 'cond_resched.2017.12.04a', 'dyntick.2017.11.28a', 'fixes.2017...Paul E. McKenney2017-12-112-63/+57
| | |\ \ \
| | | | * | torture: Eliminate torture_runnable and perf_runnablePaul E. McKenney2017-12-111-5/+1
| | | | * | locking/locktorture: Fix num reader/writer corner casesDavidlohr Bueso2017-12-111-32/+44
| | | | * | locking/locktorture: Fix rwsem reader_delayDavidlohr Bueso2017-12-111-1/+1
| | | | * | torture: Reduce #ifdefs for preempt_schedule()Paul E. McKenney2017-12-111-18/+6
| | | |/ / | | |/| |
| | | * | locking: Remove smp_read_barrier_depends() from queued_spin_lock_slowpath()Paul E. McKenney2017-12-041-7/+5
| | |/ /
* | | | locking/lockdep: Avoid triggering hardlockup from debug_show_all_locks()Tejun Heo2018-01-241-0/+2
| |_|/ |/| |
* | | futex: Avoid violating the 10th rule of futexPeter Zijlstra2018-01-142-7/+20
|/ /
* | locking/lockdep: Remove the cross-release locking checksIngo Molnar2017-12-121-617/+35
* | locking/core: Remove break_lock field when CONFIG_GENERIC_LOCKBREAK=yWill Deacon2017-12-121-8/+1
* | locking/core: Fix deadlock during boot on systems with GENERIC_LOCKBREAKWill Deacon2017-12-121-4/+4
OpenPOWER on IntegriCloud