diff options
Diffstat (limited to 'kernel/locking/rtmutex.c')
-rw-r--r-- | kernel/locking/rtmutex.c | 12 |
1 files changed, 9 insertions, 3 deletions
diff --git a/kernel/locking/rtmutex.c b/kernel/locking/rtmutex.c index 7d63bc5dd9b2..d2fe4b472b13 100644 --- a/kernel/locking/rtmutex.c +++ b/kernel/locking/rtmutex.c | |||
@@ -1153,6 +1153,14 @@ void rt_mutex_adjust_pi(struct task_struct *task) | |||
1153 | next_lock, NULL, task); | 1153 | next_lock, NULL, task); |
1154 | } | 1154 | } |
1155 | 1155 | ||
1156 | void rt_mutex_init_waiter(struct rt_mutex_waiter *waiter) | ||
1157 | { | ||
1158 | debug_rt_mutex_init_waiter(waiter); | ||
1159 | RB_CLEAR_NODE(&waiter->pi_tree_entry); | ||
1160 | RB_CLEAR_NODE(&waiter->tree_entry); | ||
1161 | waiter->task = NULL; | ||
1162 | } | ||
1163 | |||
1156 | /** | 1164 | /** |
1157 | * __rt_mutex_slowlock() - Perform the wait-wake-try-to-take loop | 1165 | * __rt_mutex_slowlock() - Perform the wait-wake-try-to-take loop |
1158 | * @lock: the rt_mutex to take | 1166 | * @lock: the rt_mutex to take |
@@ -1235,9 +1243,7 @@ rt_mutex_slowlock(struct rt_mutex *lock, int state, | |||
1235 | unsigned long flags; | 1243 | unsigned long flags; |
1236 | int ret = 0; | 1244 | int ret = 0; |
1237 | 1245 | ||
1238 | debug_rt_mutex_init_waiter(&waiter); | 1246 | rt_mutex_init_waiter(&waiter); |
1239 | RB_CLEAR_NODE(&waiter.pi_tree_entry); | ||
1240 | RB_CLEAR_NODE(&waiter.tree_entry); | ||
1241 | 1247 | ||
1242 | /* | 1248 | /* |
1243 | * Technically we could use raw_spin_[un]lock_irq() here, but this can | 1249 | * Technically we could use raw_spin_[un]lock_irq() here, but this can |