aboutsummaryrefslogtreecommitdiff
path: root/kernel/locking
AgeCommit message (Expand)AuthorFilesLines
2017-03-16locking/rwsem: Fix down_write_killable() for CONFIG_RWSEM_GENERIC_SPINLOCK=yGravatar Niklas Cassel 1-5/+11
2017-03-07Merge branch 'locking-urgent-for-linus' of git://git.kernel.org/pub/scm/linux...Gravatar Linus Torvalds 2-5/+12
2017-03-02locking/ww_mutex: Adjust the lock number for stress testGravatar Boqun Feng 1-1/+1
2017-03-02locking/lockdep: Add nest_lock integrity testGravatar Peter Zijlstra 1-2/+9
2017-03-02locking/ww_mutex: Replace cpu_relax() with cond_resched() for testsGravatar Chris Wilson 1-2/+2
2017-03-02sched/headers: Prepare for new header dependencies before moving code to <lin...Gravatar Ingo Molnar 1-0/+1
2017-03-02sched/headers: Prepare for new header dependencies before moving code to <lin...Gravatar Ingo Molnar 7-0/+7
2017-03-02sched/headers: Prepare to move signal wakeup & sigpending methods from <linux...Gravatar Ingo Molnar 4-4/+4
2017-03-02sched/headers: Prepare for the removal of <linux/rtmutex.h> from <linux/sched.h>Gravatar Ingo Molnar 1-0/+1
2017-03-02sched/headers: Prepare for new header dependencies before moving code to <uap...Gravatar Ingo Molnar 1-0/+1
2017-03-02sched/headers: Prepare for new header dependencies before moving code to <lin...Gravatar Ingo Molnar 2-0/+2
2017-03-02sched/headers: Prepare for new header dependencies before moving code to <lin...Gravatar Ingo Molnar 4-1/+5
2017-02-20Merge branch 'locking-core-for-linus' of git://git.kernel.org/pub/scm/linux/k...Gravatar Linus Torvalds 15-322/+1081
2017-02-20Merge branch 'sched-core-for-linus' of git://git.kernel.org/pub/scm/linux/ker...Gravatar Linus Torvalds 1-0/+24
2017-02-10locking/spinlock/debug: Remove spinlock lockup detection codeGravatar Waiman Long 1-81/+5
2017-02-10lockdep: Fix incorrect condition to print bug msgs for MAX_LOCKDEP_CHAIN_HLOCKSGravatar Byungchul Park 1-1/+1
2017-01-30locking/mutex: Fix lockdep_assert_held() failGravatar Peter Zijlstra 3-35/+11
2017-01-30locking/rtmutex: Flip unlikely() branch to likely() in __rt_mutex_slowlock()Gravatar Steven Rostedt (VMware) 1-1/+1
2017-01-25Merge branches 'doc.2017.01.15b', 'dyntick.2017.01.23a', 'fixes.2017.01.23a',...Gravatar Paul E. McKenney 2-6/+12
2017-01-23lockdep: Make RCU suspicious-access splats use pr_errGravatar Paul E. McKenney 1-6/+6
2017-01-22locking/rwsem: Reinit wake_q after useGravatar Waiman Long 1-2/+5
2017-01-14locktorture: Fix potential memory leak with rw lock testGravatar Yang Shi 1-0/+6
2017-01-14locking/ww_mutex: Add kselftests for ww_mutex stressGravatar Chris Wilson 1-0/+254
2017-01-14locking/ww_mutex: Add kselftests for resolving ww_mutex cyclic deadlocksGravatar Chris Wilson 1-0/+115
2017-01-14locking/ww_mutex: Add kselftests for ww_mutex ABBA deadlock detectionGravatar Chris Wilson 1-0/+98
2017-01-14locking/ww_mutex: Add kselftests for ww_mutex AA deadlock detectionGravatar Chris Wilson 1-0/+39
2017-01-14locking/ww_mutex: Begin kselftests for ww_mutexGravatar Chris Wilson 2-0/+141
2017-01-14locking/ww_mutex: Add ww_mutex to locktorture testGravatar Chris Wilson 1-0/+73
2017-01-14locking/mutex, sched/wait: Add mutex_lock_io()Gravatar Tejun Heo 1-0/+24
2017-01-14locking/mutex: Initialize mutex_waiter::ww_ctx with poison when debuggingGravatar Nicolai Hähnle 1-0/+4
2017-01-14locking/ww_mutex: Optimize ww-mutexes by yielding to other waiters from optim...Gravatar Nicolai Hähnle 1-26/+52
2017-01-14locking/ww_mutex: Re-check ww->ctx in the inner optimistic spin loopGravatar Nicolai Hähnle 1-20/+29
2017-01-14locking/mutex: Improve inliningGravatar Peter Zijlstra 1-41/+44
2017-01-14locking/ww_mutex: Optimize ww-mutexes by waking at most one waiter for backof...Gravatar Nicolai Hähnle 1-19/+40
2017-01-14locking/ww_mutex: Notify waiters that have to back off while adding tasks to ...Gravatar Nicolai Hähnle 1-10/+30
2017-01-14locking/ww_mutex: Add waiters in stamp orderGravatar Nicolai Hähnle 1-7/+69
2017-01-14locking/ww_mutex: Remove the __ww_mutex_lock*() inline wrappersGravatar Nicolai Hähnle 1-8/+8
2017-01-14locking/ww_mutex: Set use_ww_ctx even when locking without a contextGravatar Nicolai Hähnle 1-12/+17
2017-01-14locking/ww_mutex: Extract stamp comparison to __ww_mutex_stamp_after()Gravatar Nicolai Hähnle 1-2/+8
2017-01-14locking/mutex: Fix mutex handoffGravatar Peter Zijlstra 1-56/+52
2017-01-14locking/percpu-rwsem: Replace waitqueue with rcuwaitGravatar Davidlohr Bueso 1-4/+3
2017-01-14sched/core: Remove set_task_state()Gravatar Davidlohr Bueso 4-11/+11
2017-01-14kernel/locking: Compute 'current' directlyGravatar Davidlohr Bueso 4-29/+22
2017-01-12locking/pvqspinlock: Don't wait if vCPU is preemptedGravatar Pan Xinhui 1-1/+1
2017-01-12locking/spinlocks: Remove the unused spin_lock_bh_nested() APIGravatar Waiman Long 1-8/+0
2016-12-24Replace <asm/uaccess.h> with <linux/uaccess.h> globallyGravatar Linus Torvalds 1-1/+1
2016-12-16Merge branch 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/vir...Gravatar Linus Torvalds 1-10/+2
2016-12-14Merge tag 'xfs-for-linus-4.10-rc1' of git://git.kernel.org/pub/scm/linux/kern...Gravatar Linus Torvalds 1-8/+12
2016-12-11Merge branch 'linus' into locking/core, to pick up fixesGravatar Ingo Molnar 1-54/+57
2016-12-06lockdep: Fix report formattingGravatar Dmitry Vyukov 1-54/+57