aboutsummaryrefslogtreecommitdiffstats
path: root/kernel/mutex.c
diff options
context:
space:
mode:
authorPeter Zijlstra <a.p.zijlstra@chello.nl>2009-01-14 09:32:51 -0500
committerIngo Molnar <mingo@elte.hu>2009-01-14 12:08:58 -0500
commit93d81d1aca26e64a75d06a85f7e128b5f49053e7 (patch)
tree760e65b9170ef90d1a2824ddd1e33ad70043e8ca /kernel/mutex.c
parenta6525042bfdfcab128bd91fad264de10fd24a55e (diff)
mutex: small cleanup
Remove a local variable by combining an assingment and test in one. Signed-off-by: Peter Zijlstra <a.p.zijlstra@chello.nl> Signed-off-by: Ingo Molnar <mingo@elte.hu>
Diffstat (limited to 'kernel/mutex.c')
-rw-r--r--kernel/mutex.c7
1 files changed, 2 insertions, 5 deletions
diff --git a/kernel/mutex.c b/kernel/mutex.c
index 4f45d4b658ef..357c6d221efe 100644
--- a/kernel/mutex.c
+++ b/kernel/mutex.c
@@ -129,7 +129,6 @@ __mutex_lock_common(struct mutex *lock, long state, unsigned int subclass,
129{ 129{
130 struct task_struct *task = current; 130 struct task_struct *task = current;
131 struct mutex_waiter waiter; 131 struct mutex_waiter waiter;
132 unsigned int old_val;
133 unsigned long flags; 132 unsigned long flags;
134 133
135 spin_lock_mutex(&lock->wait_lock, flags); 134 spin_lock_mutex(&lock->wait_lock, flags);
@@ -142,8 +141,7 @@ __mutex_lock_common(struct mutex *lock, long state, unsigned int subclass,
142 list_add_tail(&waiter.list, &lock->wait_list); 141 list_add_tail(&waiter.list, &lock->wait_list);
143 waiter.task = task; 142 waiter.task = task;
144 143
145 old_val = atomic_xchg(&lock->count, -1); 144 if (atomic_xchg(&lock->count, -1) == 1)
146 if (old_val == 1)
147 goto done; 145 goto done;
148 146
149 lock_contended(&lock->dep_map, ip); 147 lock_contended(&lock->dep_map, ip);
@@ -158,8 +156,7 @@ __mutex_lock_common(struct mutex *lock, long state, unsigned int subclass,
158 * that when we release the lock, we properly wake up the 156 * that when we release the lock, we properly wake up the
159 * other waiters: 157 * other waiters:
160 */ 158 */
161 old_val = atomic_xchg(&lock->count, -1); 159 if (atomic_xchg(&lock->count, -1) == 1)
162 if (old_val == 1)
163 break; 160 break;
164 161
165 /* 162 /*