diff options
author | Peter Zijlstra <a.p.zijlstra@chello.nl> | 2009-01-14 09:36:26 -0500 |
---|---|---|
committer | Ingo Molnar <mingo@elte.hu> | 2009-01-14 12:09:00 -0500 |
commit | 41719b03091911028116155deddc5eedf8c45e37 (patch) | |
tree | 20a699807d78bc0af86b19443dc751415c0cc6f7 /kernel/mutex.c | |
parent | 93d81d1aca26e64a75d06a85f7e128b5f49053e7 (diff) |
mutex: preemption fixes
The problem is that dropping the spinlock right before schedule is a voluntary
preemption point and can cause a schedule, right after which we schedule again.
Fix this inefficiency by keeping preemption disabled until we schedule, do this
by explicity disabling preemption and providing a schedule() variant that
assumes preemption is already disabled.
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.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/kernel/mutex.c b/kernel/mutex.c index 357c6d221efe..524ffc33dc05 100644 --- a/kernel/mutex.c +++ b/kernel/mutex.c | |||
@@ -131,6 +131,7 @@ __mutex_lock_common(struct mutex *lock, long state, unsigned int subclass, | |||
131 | struct mutex_waiter waiter; | 131 | struct mutex_waiter waiter; |
132 | unsigned long flags; | 132 | unsigned long flags; |
133 | 133 | ||
134 | preempt_disable(); | ||
134 | spin_lock_mutex(&lock->wait_lock, flags); | 135 | spin_lock_mutex(&lock->wait_lock, flags); |
135 | 136 | ||
136 | debug_mutex_lock_common(lock, &waiter); | 137 | debug_mutex_lock_common(lock, &waiter); |
@@ -170,13 +171,14 @@ __mutex_lock_common(struct mutex *lock, long state, unsigned int subclass, | |||
170 | spin_unlock_mutex(&lock->wait_lock, flags); | 171 | spin_unlock_mutex(&lock->wait_lock, flags); |
171 | 172 | ||
172 | debug_mutex_free_waiter(&waiter); | 173 | debug_mutex_free_waiter(&waiter); |
174 | preempt_enable(); | ||
173 | return -EINTR; | 175 | return -EINTR; |
174 | } | 176 | } |
175 | __set_task_state(task, state); | 177 | __set_task_state(task, state); |
176 | 178 | ||
177 | /* didnt get the lock, go to sleep: */ | 179 | /* didnt get the lock, go to sleep: */ |
178 | spin_unlock_mutex(&lock->wait_lock, flags); | 180 | spin_unlock_mutex(&lock->wait_lock, flags); |
179 | schedule(); | 181 | __schedule(); |
180 | spin_lock_mutex(&lock->wait_lock, flags); | 182 | spin_lock_mutex(&lock->wait_lock, flags); |
181 | } | 183 | } |
182 | 184 | ||
@@ -193,6 +195,7 @@ done: | |||
193 | spin_unlock_mutex(&lock->wait_lock, flags); | 195 | spin_unlock_mutex(&lock->wait_lock, flags); |
194 | 196 | ||
195 | debug_mutex_free_waiter(&waiter); | 197 | debug_mutex_free_waiter(&waiter); |
198 | preempt_enable(); | ||
196 | 199 | ||
197 | return 0; | 200 | return 0; |
198 | } | 201 | } |