index
:
linux
master
linux
Fast-forward packages
summary
refs
log
tree
commit
diff
stats
log msg
author
committer
range
path:
root
/
kernel
/
locking
/
qspinlock.c
(
unfollow
)
Commit message (
Expand
)
Author
Files
Lines
2021-08-17
locking/rtmutex: Add adaptive spinwait mechanism
Steven Rostedt
1
-2
/
+65
2021-08-17
locking/rtmutex: Implement equal priority lock stealing
Gregory Haskins
1
-17
/
+35
2021-08-17
preempt: Adjust PREEMPT_LOCK_OFFSET for RT
Thomas Gleixner
1
-0
/
+4
2021-08-17
locking/rtmutex: Prevent lockdep false positive with PI futexes
Thomas Gleixner
1
-0
/
+12
2021-08-17
futex: Prevent requeue_pi() lock nesting issue on RT
Thomas Gleixner
1
-49
/
+259
2021-08-17
futex: Simplify handle_early_requeue_pi_wakeup()
Thomas Gleixner
1
-26
/
+22
2021-08-17
futex: Reorder sanity checks in futex_requeue()
Thomas Gleixner
1
-7
/
+7
2021-08-17
futex: Clarify comment in futex_requeue()
Thomas Gleixner
1
-8
/
+20
2021-08-17
futex: Restructure futex_requeue()
Thomas Gleixner
1
-49
/
+41
2021-08-17
futex: Correct the number of requeued waiters for PI
Thomas Gleixner
1
-0
/
+4
2021-08-17
futex: Remove bogus condition for requeue PI
Thomas Gleixner
1
-1
/
+1
2021-08-17
futex: Clarify futex_requeue() PI handling
Thomas Gleixner
1
-38
/
+23
2021-08-17
futex: Clean up stale comments
Thomas Gleixner
1
-11
/
+7
2021-08-17
futex: Validate waiter correctly in futex_proxy_trylock_atomic()
Thomas Gleixner
1
-0
/
+7
2021-08-17
lib/test_lockup: Adapt to changed variables
Sebastian Andrzej Siewior
1
-3
/
+3
2021-08-17
locking/rtmutex: Add mutex variant for RT
Thomas Gleixner
4
-16
/
+187
2021-08-17
locking/ww_mutex: Implement rtmutex based ww_mutex API functions
Peter Zijlstra
2
-1
/
+77
2021-08-17
locking/rtmutex: Extend the rtmutex core to support ww_mutex
Peter Zijlstra
4
-14
/
+115
2021-08-17
locking/ww_mutex: Add rt_mutex based lock type and accessors
Peter Zijlstra
2
-12
/
+27
2021-08-17
locking/ww_mutex: Add RT priority to W/W order
Peter Zijlstra
1
-15
/
+49
2021-08-17
locking/ww_mutex: Implement rt_mutex accessors
Peter Zijlstra
1
-0
/
+80
2021-08-17
locking/ww_mutex: Abstract out internal lock accesses
Thomas Gleixner
2
-8
/
+28
2021-08-17
locking/ww_mutex: Abstract out mutex types
Peter Zijlstra
1
-10
/
+13
2021-08-17
locking/ww_mutex: Abstract out mutex accessors
Peter Zijlstra
1
-2
/
+14
2021-08-17
locking/ww_mutex: Abstract out waiter enqueueing
Peter Zijlstra
1
-6
/
+13
2021-08-17
locking/ww_mutex: Abstract out the waiter iteration
Peter Zijlstra
1
-4
/
+53
2021-08-17
locking/ww_mutex: Remove the __sched annotation from ww_mutex APIs
Peter Zijlstra
1
-6
/
+6
2021-08-17
locking/ww_mutex: Split out the W/W implementation logic into kernel/locking/...
Peter Zijlstra (Intel)
2
-371
/
+370
2021-08-17
locking/ww_mutex: Split up ww_mutex_unlock()
Peter Zijlstra (Intel)
1
-11
/
+15
2021-08-17
locking/ww_mutex: Gather mutex_waiter initialization
Peter Zijlstra
2
-9
/
+4
2021-08-17
locking/ww_mutex: Simplify lockdep annotations
Peter Zijlstra
1
-9
/
+10
2021-08-17
locking/mutex: Make mutex::wait_lock raw
Thomas Gleixner
3
-14
/
+14
2021-08-17
locking/ww_mutex: Move the ww_mutex definitions from <linux/mutex.h> into <li...
Thomas Gleixner
2
-11
/
+8
2021-08-17
locking/mutex: Move the 'struct mutex_waiter' definition from <linux/mutex.h>...
Thomas Gleixner
2
-13
/
+13
2021-08-17
locking/mutex: Consolidate core headers, remove kernel/locking/mutex-debug.h
Thomas Gleixner
4
-48
/
+26
2021-08-17
locking/rtmutex: Squash !RT tasks to DEFAULT_PRIO
Peter Zijlstra
1
-5
/
+20
2021-08-17
locking/rwlock: Provide RT variant
Thomas Gleixner
7
-13
/
+323
2021-08-17
locking/spinlock: Provide RT variant
Thomas Gleixner
2
-0
/
+130
2021-08-17
locking/rtmutex: Provide the spin/rwlock core lock function
Thomas Gleixner
2
-1
/
+61
2021-08-17
locking/spinlock: Provide RT variant header: <linux/spinlock_rt.h>
Thomas Gleixner
3
-1
/
+162
2021-08-17
locking/spinlock: Provide RT specific spinlock_t
Thomas Gleixner
1
-0
/
+26
2021-08-17
locking/rtmutex: Reduce <linux/rtmutex.h> header dependencies, only include <...
Sebastian Andrzej Siewior
1
-1
/
+1
2021-08-17
rbtree: Split out the rbtree type definitions into <linux/rbtree_types.h>
Sebastian Andrzej Siewior
2
-29
/
+36
2021-08-17
locking/lockdep: Reduce header dependencies in <linux/debug_locks.h>
Sebastian Andrzej Siewior
1
-2
/
+1
2021-08-17
locking/rtmutex: Prevent future include recursion hell
Sebastian Andrzej Siewior
1
-1
/
+1
2021-08-17
locking/spinlock: Split the lock types header, and move the raw types into <l...
Thomas Gleixner
4
-58
/
+74
2021-08-17
locking/rtmutex: Guard regular sleeping locks specific functions
Thomas Gleixner
3
-123
/
+133
2021-08-17
locking/rtmutex: Prepare RT rt_mutex_wake_q for RT locks
Thomas Gleixner
2
-3
/
+20
2021-08-17
locking/rtmutex: Use rt_mutex_wake_q_head
Thomas Gleixner
4
-23
/
+20
2021-08-17
locking/rtmutex: Provide rt_wake_q_head and helpers
Thomas Gleixner
2
-0
/
+29
[next]