diff options
Diffstat (limited to 'kernel/mutex.c')
| -rw-r--r-- | kernel/mutex.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/kernel/mutex.c b/kernel/mutex.c index e7cbbb82765b..303eab18484b 100644 --- a/kernel/mutex.c +++ b/kernel/mutex.c | |||
| @@ -133,7 +133,7 @@ __mutex_lock_common(struct mutex *lock, long state, unsigned int subclass) | |||
| 133 | 133 | ||
| 134 | debug_mutex_lock_common(lock, &waiter); | 134 | debug_mutex_lock_common(lock, &waiter); |
| 135 | mutex_acquire(&lock->dep_map, subclass, 0, _RET_IP_); | 135 | mutex_acquire(&lock->dep_map, subclass, 0, _RET_IP_); |
| 136 | debug_mutex_add_waiter(lock, &waiter, task->thread_info); | 136 | debug_mutex_add_waiter(lock, &waiter, task_thread_info(task)); |
| 137 | 137 | ||
| 138 | /* add waiting tasks to the end of the waitqueue (FIFO): */ | 138 | /* add waiting tasks to the end of the waitqueue (FIFO): */ |
| 139 | list_add_tail(&waiter.list, &lock->wait_list); | 139 | list_add_tail(&waiter.list, &lock->wait_list); |
| @@ -159,7 +159,7 @@ __mutex_lock_common(struct mutex *lock, long state, unsigned int subclass) | |||
| 159 | */ | 159 | */ |
| 160 | if (unlikely(state == TASK_INTERRUPTIBLE && | 160 | if (unlikely(state == TASK_INTERRUPTIBLE && |
| 161 | signal_pending(task))) { | 161 | signal_pending(task))) { |
| 162 | mutex_remove_waiter(lock, &waiter, task->thread_info); | 162 | mutex_remove_waiter(lock, &waiter, task_thread_info(task)); |
| 163 | mutex_release(&lock->dep_map, 1, _RET_IP_); | 163 | mutex_release(&lock->dep_map, 1, _RET_IP_); |
| 164 | spin_unlock_mutex(&lock->wait_lock, flags); | 164 | spin_unlock_mutex(&lock->wait_lock, flags); |
| 165 | 165 | ||
| @@ -175,8 +175,8 @@ __mutex_lock_common(struct mutex *lock, long state, unsigned int subclass) | |||
| 175 | } | 175 | } |
| 176 | 176 | ||
| 177 | /* got the lock - rejoice! */ | 177 | /* got the lock - rejoice! */ |
| 178 | mutex_remove_waiter(lock, &waiter, task->thread_info); | 178 | mutex_remove_waiter(lock, &waiter, task_thread_info(task)); |
| 179 | debug_mutex_set_owner(lock, task->thread_info); | 179 | debug_mutex_set_owner(lock, task_thread_info(task)); |
| 180 | 180 | ||
| 181 | /* set it to 0 if there are no waiters left: */ | 181 | /* set it to 0 if there are no waiters left: */ |
| 182 | if (likely(list_empty(&lock->wait_list))) | 182 | if (likely(list_empty(&lock->wait_list))) |
