diff options
author | Davidlohr Bueso <dave@stgolabs.net> | 2017-09-08 19:15:01 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2017-09-08 21:26:49 -0400 |
commit | a23ba907d5e65d6aeea3e59c82fda9cd206a7aad (patch) | |
tree | a0bd42b27596cf758517fa004d1d8681a7eef932 /kernel/locking/rtmutex-debug.c | |
parent | 2161573ecd6931565936cb66793b2d2bf805c088 (diff) |
locking/rtmutex: replace top-waiter and pi_waiters leftmost caching
... with the generic rbtree flavor instead. No changes
in semantics whatsoever.
Link: http://lkml.kernel.org/r/20170719014603.19029-10-dave@stgolabs.net
Signed-off-by: Davidlohr Bueso <dbueso@suse.de>
Acked-by: Peter Zijlstra (Intel) <peterz@infradead.org>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'kernel/locking/rtmutex-debug.c')
-rw-r--r-- | kernel/locking/rtmutex-debug.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/kernel/locking/rtmutex-debug.c b/kernel/locking/rtmutex-debug.c index ac35e648b0e5..f4a74e78d467 100644 --- a/kernel/locking/rtmutex-debug.c +++ b/kernel/locking/rtmutex-debug.c | |||
@@ -58,7 +58,7 @@ static void printk_lock(struct rt_mutex *lock, int print_owner) | |||
58 | 58 | ||
59 | void rt_mutex_debug_task_free(struct task_struct *task) | 59 | void rt_mutex_debug_task_free(struct task_struct *task) |
60 | { | 60 | { |
61 | DEBUG_LOCKS_WARN_ON(!RB_EMPTY_ROOT(&task->pi_waiters)); | 61 | DEBUG_LOCKS_WARN_ON(!RB_EMPTY_ROOT(&task->pi_waiters.rb_root)); |
62 | DEBUG_LOCKS_WARN_ON(task->pi_blocked_on); | 62 | DEBUG_LOCKS_WARN_ON(task->pi_blocked_on); |
63 | } | 63 | } |
64 | 64 | ||