aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/kernel/locking (follow)
AgeCommit message (Expand)AuthorFilesLines
2020-02-04proc: convert everything to "struct proc_ops"Alexey Dobriyan1-8/+7
2020-01-28Merge branch 'locking-core-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tipLinus Torvalds3-21/+19
2020-01-17locking/osq: Use optimized spinning loop for arm64Waiman Long1-13/+10
2020-01-17locking/qspinlock: Fix inaccessible URL of MCS lock paperWaiman Long1-6/+7
2020-01-17locking/lockdep: Fix lockdep_stats indentation problemWaiman Long1-2/+2
2020-01-17locking/rwsem: Fix kernel crash when spinning on RWSEM_OWNER_UNKNOWNWaiman Long1-2/+2
2019-12-25locking/lockdep: Fix buffer overrun problem in stack_trace[]Waiman Long1-4/+3
2019-12-11Revert "locking/mutex: Complain upon mutex API misuse in IRQ contexts"Davidlohr Bueso1-4/+0
2019-11-29locking/spinlock/debug: Fix various data racesMarco Elver1-16/+16
2019-11-26Merge branch 'locking-core-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tipLinus Torvalds4-15/+16
2019-11-13locking/lockdep: Update the comment for __lock_release()Dan Carpenter1-3/+1
2019-10-29locking/mutex: Complain upon mutex API misuse in IRQ contextsDavidlohr Bueso1-0/+4
2019-10-09locking/lockdep: Remove unused @nested argument from lock_release()Qian Cai4-12/+11
2019-10-05locking: locktorture: Do not include rwlock.h directlyWolfgang M. Reimer1-1/+0
2019-10-05locktorture: Replace strncmp() with str_has_prefix()Chuhong Yuan1-4/+4
2019-09-25Revert "locking/pvqspinlock: Don't wait if vCPU is preempted"Wanpeng Li1-1/+1
2019-09-16Merge branch 'sched-core-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tipLinus Torvalds1-4/+2
2019-09-16Merge branch 'locking-core-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tipLinus Torvalds5-51/+205
2019-09-16Merge branch 'sched/rt' into sched/core, to pick up -rt changesIngo Molnar4-15/+40
2019-08-08mutex: Fix up mutex_waiter usagePeter Zijlstra2-15/+0
2019-08-06locking/mutex: Use mutex flags macro instead of hard codeMukesh Ojha1-1/+1
2019-08-06locking/mutex: Make __mutex_owner static to mutex.cMukesh Ojha2-0/+41
2019-08-06locking/rwsem: Check for operations on an uninitialized rwsemDavidlohr Bueso1-4/+18
2019-08-06locking/rwsem: Make handoff writer optimistically spin on ownerWaiman Long1-6/+26
2019-08-01lockdep: Make print_lock() address visiblePaul E. McKenney1-1/+1
2019-07-25sched/core: Convert get_task_struct() to return the taskMatthew Wilcox (Oracle)1-4/+2
2019-07-25locking/lockdep: Report more stack trace statisticsBart Van Assche3-0/+39
2019-07-25locking/lockdep: Reduce space occupied by stack tracesBart Van Assche2-38/+92
2019-07-25locking/lockdep: Make it clear that what lock_class::key points at is not modifiedBart Van Assche3-3/+4
2019-07-25locking/mutex: Test for initialized mutexSebastian Andrzej Siewior1-1/+10
2019-07-25locking/lockdep: Clean up #ifdef checksArnd Bergmann1-7/+6
2019-07-25locking/lockdep: Hide unused 'class' variableArnd Bergmann1-1/+2
2019-07-25locking/rwsem: Add ACQUIRE commentsPeter Zijlstra1-5/+13
2019-07-25lcoking/rwsem: Add missing ACQUIRE to read_slowpath sleep loopPeter Zijlstra1-1/+3
2019-07-25locking/rwsem: Add missing ACQUIRE to read_slowpath exit when queue is emptyJan Stancek1-0/+2
2019-07-25locking/rwsem: Don't call owner_on_cpu() on read-ownerWaiman Long1-1/+5
2019-07-15docs: locking: convert docs to ReST and rename to *.rstMauro Carvalho Chehab2-2/+2
2019-07-13locking/lockdep: Fix lock used or unused stats errorYuyang Du1-2/+3
2019-07-08Merge branch 'locking-core-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tipLinus Torvalds8-1455/+1886
2019-06-28Merge branch 'for-mingo' of git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu into core/rcuIngo Molnar2-2/+2
2019-06-25locking/lockdep: increase size of counters for lockdep statisticsKobe Wu1-20/+16
2019-06-25locking/lockdep: Move mark_lock() inside CONFIG_TRACE_IRQFLAGS && CONFIG_PROVE_LOCKINGArnd Bergmann1-39/+34
2019-06-19Merge branches 'consolidate.2019.05.28a', 'doc.2019.05.28a', 'fixes.2019.06.13a', 'srcu.2019.05.28a', 'sync.2019.05.28a' and 'torture.2019.05.28a' into HEADPaul E. McKenney2-2/+2
2019-06-17locking/rwsem: Guard against making count negativeWaiman Long1-12/+41
2019-06-17locking/rwsem: Adaptive disabling of reader optimistic spinningWaiman Long2-8/+135
2019-06-17locking/rwsem: Enable time-based spinning on reader-owned rwsemWaiman Long2-30/+144
2019-06-17locking/rwsem: Make rwsem->owner an atomic_long_tWaiman Long1-45/+80
2019-06-17locking/rwsem: Enable readers spinning on writerWaiman Long2-12/+75
2019-06-17locking/rwsem: Clarify usage of owner's nonspinaable bitWaiman Long1-22/+21
2019-06-17locking/rwsem: Wake up almost all readers in wait queueWaiman Long1-5/+26