diff options
Diffstat (limited to 'kernel/locking/rtmutex.c')
| -rw-r--r-- | kernel/locking/rtmutex.c | 13 | 
1 files changed, 7 insertions, 6 deletions
| diff --git a/kernel/locking/rtmutex.c b/kernel/locking/rtmutex.c index 7c98873a3077..b73279367087 100644 --- a/kernel/locking/rtmutex.c +++ b/kernel/locking/rtmutex.c | |||
| @@ -349,7 +349,7 @@ static inline struct rt_mutex *task_blocked_on_lock(struct task_struct *p) | |||
| 349 | * | 349 | * | 
| 350 | * @task: the task owning the mutex (owner) for which a chain walk is | 350 | * @task: the task owning the mutex (owner) for which a chain walk is | 
| 351 | * probably needed | 351 | * probably needed | 
| 352 | * @deadlock_detect: do we have to carry out deadlock detection? | 352 | * @chwalk: do we have to carry out deadlock detection? | 
| 353 | * @orig_lock: the mutex (can be NULL if we are walking the chain to recheck | 353 | * @orig_lock: the mutex (can be NULL if we are walking the chain to recheck | 
| 354 | * things for a task that has just got its priority adjusted, and | 354 | * things for a task that has just got its priority adjusted, and | 
| 355 | * is waiting on a mutex) | 355 | * is waiting on a mutex) | 
| @@ -1130,6 +1130,7 @@ __rt_mutex_slowlock(struct rt_mutex *lock, int state, | |||
| 1130 | set_current_state(state); | 1130 | set_current_state(state); | 
| 1131 | } | 1131 | } | 
| 1132 | 1132 | ||
| 1133 | __set_current_state(TASK_RUNNING); | ||
| 1133 | return ret; | 1134 | return ret; | 
| 1134 | } | 1135 | } | 
| 1135 | 1136 | ||
| @@ -1188,12 +1189,13 @@ rt_mutex_slowlock(struct rt_mutex *lock, int state, | |||
| 1188 | ret = task_blocks_on_rt_mutex(lock, &waiter, current, chwalk); | 1189 | ret = task_blocks_on_rt_mutex(lock, &waiter, current, chwalk); | 
| 1189 | 1190 | ||
| 1190 | if (likely(!ret)) | 1191 | if (likely(!ret)) | 
| 1192 | /* sleep on the mutex */ | ||
| 1191 | ret = __rt_mutex_slowlock(lock, state, timeout, &waiter); | 1193 | ret = __rt_mutex_slowlock(lock, state, timeout, &waiter); | 
| 1192 | 1194 | ||
| 1193 | set_current_state(TASK_RUNNING); | ||
| 1194 | |||
| 1195 | if (unlikely(ret)) { | 1195 | if (unlikely(ret)) { | 
| 1196 | remove_waiter(lock, &waiter); | 1196 | __set_current_state(TASK_RUNNING); | 
| 1197 | if (rt_mutex_has_waiters(lock)) | ||
| 1198 | remove_waiter(lock, &waiter); | ||
| 1197 | rt_mutex_handle_deadlock(ret, chwalk, &waiter); | 1199 | rt_mutex_handle_deadlock(ret, chwalk, &waiter); | 
| 1198 | } | 1200 | } | 
| 1199 | 1201 | ||
| @@ -1626,10 +1628,9 @@ int rt_mutex_finish_proxy_lock(struct rt_mutex *lock, | |||
| 1626 | 1628 | ||
| 1627 | set_current_state(TASK_INTERRUPTIBLE); | 1629 | set_current_state(TASK_INTERRUPTIBLE); | 
| 1628 | 1630 | ||
| 1631 | /* sleep on the mutex */ | ||
| 1629 | ret = __rt_mutex_slowlock(lock, TASK_INTERRUPTIBLE, to, waiter); | 1632 | ret = __rt_mutex_slowlock(lock, TASK_INTERRUPTIBLE, to, waiter); | 
| 1630 | 1633 | ||
| 1631 | set_current_state(TASK_RUNNING); | ||
| 1632 | |||
| 1633 | if (unlikely(ret)) | 1634 | if (unlikely(ret)) | 
| 1634 | remove_waiter(lock, waiter); | 1635 | remove_waiter(lock, waiter); | 
| 1635 | 1636 | ||
