blob: 1dbd4210baef17a6ea28354c26737009077eefce [file] [log] [blame]
Ingo Molnar6053ee32006-01-09 15:59:19 -08001/*
2 * kernel/mutex.c
3 *
4 * Mutexes: blocking mutual exclusion locks
5 *
6 * Started by Ingo Molnar:
7 *
8 * Copyright (C) 2004, 2005, 2006 Red Hat, Inc., Ingo Molnar <mingo@redhat.com>
9 *
10 * Many thanks to Arjan van de Ven, Thomas Gleixner, Steven Rostedt and
11 * David Howells for suggestions and improvements.
12 *
Peter Zijlstra0d66bf62009-01-12 14:01:47 +010013 * - Adaptive spinning for mutexes by Peter Zijlstra. (Ported to mainline
14 * from the -rt tree, where it was originally implemented for rtmutexes
15 * by Steven Rostedt, based on work by Gregory Haskins, Peter Morreale
16 * and Sven Dietrich.
17 *
Ingo Molnar6053ee32006-01-09 15:59:19 -080018 * Also see Documentation/mutex-design.txt.
19 */
20#include <linux/mutex.h>
21#include <linux/sched.h>
Clark Williams8bd75c72013-02-07 09:47:07 -060022#include <linux/sched/rt.h>
Paul Gortmaker9984de12011-05-23 14:51:41 -040023#include <linux/export.h>
Ingo Molnar6053ee32006-01-09 15:59:19 -080024#include <linux/spinlock.h>
25#include <linux/interrupt.h>
Ingo Molnar9a11b49a2006-07-03 00:24:33 -070026#include <linux/debug_locks.h>
Ingo Molnar6053ee32006-01-09 15:59:19 -080027
28/*
29 * In the DEBUG case we are using the "NULL fastpath" for mutexes,
30 * which forces all calls into the slowpath:
31 */
32#ifdef CONFIG_DEBUG_MUTEXES
33# include "mutex-debug.h"
34# include <asm-generic/mutex-null.h>
35#else
36# include "mutex.h"
37# include <asm/mutex.h>
38#endif
39
Waiman Long0dc8c732013-04-17 15:23:12 -040040/*
41 * A mutex count of -1 indicates that waiters are sleeping waiting for the
42 * mutex. Some architectures can allow any negative number, not just -1, for
43 * this purpose.
44 */
45#ifdef __ARCH_ALLOW_ANY_NEGATIVE_MUTEX_COUNT
46#define MUTEX_SHOW_NO_WAITER(mutex) (atomic_read(&(mutex)->count) >= 0)
47#else
48#define MUTEX_SHOW_NO_WAITER(mutex) (atomic_read(&(mutex)->count) != -1)
49#endif
50
Ingo Molnaref5d4702006-07-03 00:24:55 -070051void
52__mutex_init(struct mutex *lock, const char *name, struct lock_class_key *key)
Ingo Molnar6053ee32006-01-09 15:59:19 -080053{
54 atomic_set(&lock->count, 1);
55 spin_lock_init(&lock->wait_lock);
56 INIT_LIST_HEAD(&lock->wait_list);
Peter Zijlstra0d66bf62009-01-12 14:01:47 +010057 mutex_clear_owner(lock);
Waiman Long2bd2c922013-04-17 15:23:13 -040058#ifdef CONFIG_MUTEX_SPIN_ON_OWNER
59 lock->spin_mlock = NULL;
60#endif
Ingo Molnar6053ee32006-01-09 15:59:19 -080061
Ingo Molnaref5d4702006-07-03 00:24:55 -070062 debug_mutex_init(lock, name, key);
Ingo Molnar6053ee32006-01-09 15:59:19 -080063}
64
65EXPORT_SYMBOL(__mutex_init);
66
Peter Zijlstrae4564f72007-10-11 22:11:12 +020067#ifndef CONFIG_DEBUG_LOCK_ALLOC
Ingo Molnar6053ee32006-01-09 15:59:19 -080068/*
69 * We split the mutex lock/unlock logic into separate fastpath and
70 * slowpath functions, to reduce the register pressure on the fastpath.
71 * We also put the fastpath first in the kernel image, to make sure the
72 * branch is predicted by the CPU as default-untaken.
73 */
Török Edwin7918baa2008-11-24 10:17:42 +020074static __used noinline void __sched
Ingo Molnar9a11b49a2006-07-03 00:24:33 -070075__mutex_lock_slowpath(atomic_t *lock_count);
Ingo Molnar6053ee32006-01-09 15:59:19 -080076
Randy Dunlapef5dc122010-09-02 15:48:16 -070077/**
Ingo Molnar6053ee32006-01-09 15:59:19 -080078 * mutex_lock - acquire the mutex
79 * @lock: the mutex to be acquired
80 *
81 * Lock the mutex exclusively for this task. If the mutex is not
82 * available right now, it will sleep until it can get it.
83 *
84 * The mutex must later on be released by the same task that
85 * acquired it. Recursive locking is not allowed. The task
86 * may not exit without first unlocking the mutex. Also, kernel
87 * memory where the mutex resides mutex must not be freed with
88 * the mutex still locked. The mutex must first be initialized
89 * (or statically defined) before it can be locked. memset()-ing
90 * the mutex to 0 is not allowed.
91 *
92 * ( The CONFIG_DEBUG_MUTEXES .config option turns on debugging
93 * checks that will enforce the restrictions and will also do
94 * deadlock debugging. )
95 *
96 * This function is similar to (but not equivalent to) down().
97 */
H. Peter Anvinb09d2502009-04-01 17:21:56 -070098void __sched mutex_lock(struct mutex *lock)
Ingo Molnar6053ee32006-01-09 15:59:19 -080099{
Ingo Molnarc544bdb2006-01-10 22:10:36 +0100100 might_sleep();
Ingo Molnar6053ee32006-01-09 15:59:19 -0800101 /*
102 * The locking fastpath is the 1->0 transition from
103 * 'unlocked' into 'locked' state.
Ingo Molnar6053ee32006-01-09 15:59:19 -0800104 */
105 __mutex_fastpath_lock(&lock->count, __mutex_lock_slowpath);
Peter Zijlstra0d66bf62009-01-12 14:01:47 +0100106 mutex_set_owner(lock);
Ingo Molnar6053ee32006-01-09 15:59:19 -0800107}
108
109EXPORT_SYMBOL(mutex_lock);
Peter Zijlstrae4564f72007-10-11 22:11:12 +0200110#endif
Ingo Molnar6053ee32006-01-09 15:59:19 -0800111
Waiman Long41fcb9f2013-04-17 15:23:11 -0400112#ifdef CONFIG_MUTEX_SPIN_ON_OWNER
113/*
Waiman Long2bd2c922013-04-17 15:23:13 -0400114 * In order to avoid a stampede of mutex spinners from acquiring the mutex
115 * more or less simultaneously, the spinners need to acquire a MCS lock
116 * first before spinning on the owner field.
117 *
118 * We don't inline mspin_lock() so that perf can correctly account for the
119 * time spent in this lock function.
120 */
121struct mspin_node {
122 struct mspin_node *next ;
123 int locked; /* 1 if lock acquired */
124};
125#define MLOCK(mutex) ((struct mspin_node **)&((mutex)->spin_mlock))
126
127static noinline
128void mspin_lock(struct mspin_node **lock, struct mspin_node *node)
129{
130 struct mspin_node *prev;
131
132 /* Init node */
133 node->locked = 0;
134 node->next = NULL;
135
136 prev = xchg(lock, node);
137 if (likely(prev == NULL)) {
138 /* Lock acquired */
139 node->locked = 1;
140 return;
141 }
142 ACCESS_ONCE(prev->next) = node;
143 smp_wmb();
144 /* Wait until the lock holder passes the lock down */
145 while (!ACCESS_ONCE(node->locked))
146 arch_mutex_cpu_relax();
147}
148
149static void mspin_unlock(struct mspin_node **lock, struct mspin_node *node)
150{
151 struct mspin_node *next = ACCESS_ONCE(node->next);
152
153 if (likely(!next)) {
154 /*
155 * Release the lock by setting it to NULL
156 */
157 if (cmpxchg(lock, node, NULL) == node)
158 return;
159 /* Wait until the next pointer is set */
160 while (!(next = ACCESS_ONCE(node->next)))
161 arch_mutex_cpu_relax();
162 }
163 ACCESS_ONCE(next->locked) = 1;
164 smp_wmb();
165}
166
167/*
Waiman Long41fcb9f2013-04-17 15:23:11 -0400168 * Mutex spinning code migrated from kernel/sched/core.c
169 */
170
171static inline bool owner_running(struct mutex *lock, struct task_struct *owner)
172{
173 if (lock->owner != owner)
174 return false;
175
176 /*
177 * Ensure we emit the owner->on_cpu, dereference _after_ checking
178 * lock->owner still matches owner, if that fails, owner might
179 * point to free()d memory, if it still matches, the rcu_read_lock()
180 * ensures the memory stays valid.
181 */
182 barrier();
183
184 return owner->on_cpu;
185}
186
187/*
188 * Look out! "owner" is an entirely speculative pointer
189 * access and not reliable.
190 */
191static noinline
192int mutex_spin_on_owner(struct mutex *lock, struct task_struct *owner)
193{
194 rcu_read_lock();
195 while (owner_running(lock, owner)) {
196 if (need_resched())
197 break;
198
199 arch_mutex_cpu_relax();
200 }
201 rcu_read_unlock();
202
203 /*
204 * We break out the loop above on need_resched() and when the
205 * owner changed, which is a sign for heavy contention. Return
206 * success only when lock->owner is NULL.
207 */
208 return lock->owner == NULL;
209}
Waiman Long2bd2c922013-04-17 15:23:13 -0400210
211/*
212 * Initial check for entering the mutex spinning loop
213 */
214static inline int mutex_can_spin_on_owner(struct mutex *lock)
215{
216 int retval = 1;
217
218 rcu_read_lock();
219 if (lock->owner)
220 retval = lock->owner->on_cpu;
221 rcu_read_unlock();
222 /*
223 * if lock->owner is not set, the mutex owner may have just acquired
224 * it and not set the owner yet or the mutex has been released.
225 */
226 return retval;
227}
Waiman Long41fcb9f2013-04-17 15:23:11 -0400228#endif
229
Török Edwin7918baa2008-11-24 10:17:42 +0200230static __used noinline void __sched __mutex_unlock_slowpath(atomic_t *lock_count);
Ingo Molnar6053ee32006-01-09 15:59:19 -0800231
Randy Dunlapef5dc122010-09-02 15:48:16 -0700232/**
Ingo Molnar6053ee32006-01-09 15:59:19 -0800233 * mutex_unlock - release the mutex
234 * @lock: the mutex to be released
235 *
236 * Unlock a mutex that has been locked by this task previously.
237 *
238 * This function must not be used in interrupt context. Unlocking
239 * of a not locked mutex is not allowed.
240 *
241 * This function is similar to (but not equivalent to) up().
242 */
Harvey Harrison7ad5b3a2008-02-08 04:19:53 -0800243void __sched mutex_unlock(struct mutex *lock)
Ingo Molnar6053ee32006-01-09 15:59:19 -0800244{
245 /*
246 * The unlocking fastpath is the 0->1 transition from 'locked'
247 * into 'unlocked' state:
Ingo Molnar6053ee32006-01-09 15:59:19 -0800248 */
Peter Zijlstra0d66bf62009-01-12 14:01:47 +0100249#ifndef CONFIG_DEBUG_MUTEXES
250 /*
251 * When debugging is enabled we must not clear the owner before time,
252 * the slow path will always be taken, and that clears the owner field
253 * after verifying that it was indeed current.
254 */
255 mutex_clear_owner(lock);
256#endif
Ingo Molnar6053ee32006-01-09 15:59:19 -0800257 __mutex_fastpath_unlock(&lock->count, __mutex_unlock_slowpath);
258}
259
260EXPORT_SYMBOL(mutex_unlock);
261
262/*
263 * Lock a mutex (possibly interruptible), slowpath:
264 */
265static inline int __sched
Peter Zijlstrae4564f72007-10-11 22:11:12 +0200266__mutex_lock_common(struct mutex *lock, long state, unsigned int subclass,
Peter Zijlstrae4c70a62011-05-24 17:12:03 -0700267 struct lockdep_map *nest_lock, unsigned long ip)
Ingo Molnar6053ee32006-01-09 15:59:19 -0800268{
269 struct task_struct *task = current;
270 struct mutex_waiter waiter;
Ingo Molnar1fb00c62006-06-26 00:24:31 -0700271 unsigned long flags;
Ingo Molnar6053ee32006-01-09 15:59:19 -0800272
Peter Zijlstra41719b02009-01-14 15:36:26 +0100273 preempt_disable();
Peter Zijlstrae4c70a62011-05-24 17:12:03 -0700274 mutex_acquire_nest(&lock->dep_map, subclass, 0, nest_lock, ip);
Frederic Weisbeckerc0226022009-12-02 20:49:16 +0100275
276#ifdef CONFIG_MUTEX_SPIN_ON_OWNER
Peter Zijlstra0d66bf62009-01-12 14:01:47 +0100277 /*
278 * Optimistic spinning.
279 *
280 * We try to spin for acquisition when we find that there are no
281 * pending waiters and the lock owner is currently running on a
282 * (different) CPU.
283 *
284 * The rationale is that if the lock owner is running, it is likely to
285 * release the lock soon.
286 *
287 * Since this needs the lock owner, and this mutex implementation
288 * doesn't track the owner atomically in the lock field, we need to
289 * track it non-atomically.
290 *
291 * We can't do this for DEBUG_MUTEXES because that relies on wait_lock
292 * to serialize everything.
Waiman Long2bd2c922013-04-17 15:23:13 -0400293 *
294 * The mutex spinners are queued up using MCS lock so that only one
295 * spinner can compete for the mutex. However, if mutex spinning isn't
296 * going to happen, there is no point in going through the lock/unlock
297 * overhead.
Peter Zijlstra0d66bf62009-01-12 14:01:47 +0100298 */
Waiman Long2bd2c922013-04-17 15:23:13 -0400299 if (!mutex_can_spin_on_owner(lock))
300 goto slowpath;
Peter Zijlstra0d66bf62009-01-12 14:01:47 +0100301
302 for (;;) {
Peter Zijlstrac6eb3dd2011-04-05 17:23:41 +0200303 struct task_struct *owner;
Waiman Long2bd2c922013-04-17 15:23:13 -0400304 struct mspin_node node;
Peter Zijlstra0d66bf62009-01-12 14:01:47 +0100305
306 /*
Peter Zijlstra0d66bf62009-01-12 14:01:47 +0100307 * If there's an owner, wait for it to either
308 * release the lock or go to sleep.
309 */
Waiman Long2bd2c922013-04-17 15:23:13 -0400310 mspin_lock(MLOCK(lock), &node);
Peter Zijlstra0d66bf62009-01-12 14:01:47 +0100311 owner = ACCESS_ONCE(lock->owner);
Waiman Long2bd2c922013-04-17 15:23:13 -0400312 if (owner && !mutex_spin_on_owner(lock, owner)) {
313 mspin_unlock(MLOCK(lock), &node);
Peter Zijlstra0d66bf62009-01-12 14:01:47 +0100314 break;
Waiman Long2bd2c922013-04-17 15:23:13 -0400315 }
Peter Zijlstra0d66bf62009-01-12 14:01:47 +0100316
Waiman Long0dc8c732013-04-17 15:23:12 -0400317 if ((atomic_read(&lock->count) == 1) &&
318 (atomic_cmpxchg(&lock->count, 1, 0) == 1)) {
Chris Masonac6e60e2009-01-14 17:29:31 +0100319 lock_acquired(&lock->dep_map, ip);
320 mutex_set_owner(lock);
Waiman Long2bd2c922013-04-17 15:23:13 -0400321 mspin_unlock(MLOCK(lock), &node);
Chris Masonac6e60e2009-01-14 17:29:31 +0100322 preempt_enable();
323 return 0;
324 }
Waiman Long2bd2c922013-04-17 15:23:13 -0400325 mspin_unlock(MLOCK(lock), &node);
Chris Masonac6e60e2009-01-14 17:29:31 +0100326
Peter Zijlstra0d66bf62009-01-12 14:01:47 +0100327 /*
328 * When there's no owner, we might have preempted between the
329 * owner acquiring the lock and setting the owner field. If
330 * we're an RT task that will live-lock because we won't let
331 * the owner complete.
332 */
333 if (!owner && (need_resched() || rt_task(task)))
334 break;
335
Peter Zijlstra0d66bf62009-01-12 14:01:47 +0100336 /*
337 * The cpu_relax() call is a compiler barrier which forces
338 * everything in this loop to be re-loaded. We don't need
339 * memory barriers as we'll eventually observe the right
340 * values at the cost of a few extra spins.
341 */
Gerald Schaefer335d7af2010-11-22 15:47:36 +0100342 arch_mutex_cpu_relax();
Peter Zijlstra0d66bf62009-01-12 14:01:47 +0100343 }
Waiman Long2bd2c922013-04-17 15:23:13 -0400344slowpath:
Peter Zijlstra0d66bf62009-01-12 14:01:47 +0100345#endif
Ingo Molnar1fb00c62006-06-26 00:24:31 -0700346 spin_lock_mutex(&lock->wait_lock, flags);
Ingo Molnar6053ee32006-01-09 15:59:19 -0800347
Ingo Molnar9a11b49a2006-07-03 00:24:33 -0700348 debug_mutex_lock_common(lock, &waiter);
Roman Zippelc9f4f062007-05-09 02:35:16 -0700349 debug_mutex_add_waiter(lock, &waiter, task_thread_info(task));
Ingo Molnar6053ee32006-01-09 15:59:19 -0800350
351 /* add waiting tasks to the end of the waitqueue (FIFO): */
352 list_add_tail(&waiter.list, &lock->wait_list);
353 waiter.task = task;
354
Waiman Long0dc8c732013-04-17 15:23:12 -0400355 if (MUTEX_SHOW_NO_WAITER(lock) && (atomic_xchg(&lock->count, -1) == 1))
Peter Zijlstra4fe87742007-07-19 01:48:58 -0700356 goto done;
357
Peter Zijlstrae4564f72007-10-11 22:11:12 +0200358 lock_contended(&lock->dep_map, ip);
Peter Zijlstra4fe87742007-07-19 01:48:58 -0700359
Ingo Molnar6053ee32006-01-09 15:59:19 -0800360 for (;;) {
361 /*
362 * Lets try to take the lock again - this is needed even if
363 * we get here for the first time (shortly after failing to
364 * acquire the lock), to make sure that we get a wakeup once
365 * it's unlocked. Later on, if we sleep, this is the
366 * operation that gives us the lock. We xchg it to -1, so
367 * that when we release the lock, we properly wake up the
368 * other waiters:
369 */
Waiman Long0dc8c732013-04-17 15:23:12 -0400370 if (MUTEX_SHOW_NO_WAITER(lock) &&
371 (atomic_xchg(&lock->count, -1) == 1))
Ingo Molnar6053ee32006-01-09 15:59:19 -0800372 break;
373
374 /*
375 * got a signal? (This code gets eliminated in the
376 * TASK_UNINTERRUPTIBLE case.)
377 */
Oleg Nesterov6ad36762008-06-08 21:20:42 +0400378 if (unlikely(signal_pending_state(state, task))) {
Liam R. Howlettad776532007-12-06 17:37:59 -0500379 mutex_remove_waiter(lock, &waiter,
380 task_thread_info(task));
Peter Zijlstrae4564f72007-10-11 22:11:12 +0200381 mutex_release(&lock->dep_map, 1, ip);
Ingo Molnar1fb00c62006-06-26 00:24:31 -0700382 spin_unlock_mutex(&lock->wait_lock, flags);
Ingo Molnar6053ee32006-01-09 15:59:19 -0800383
384 debug_mutex_free_waiter(&waiter);
Peter Zijlstra41719b02009-01-14 15:36:26 +0100385 preempt_enable();
Ingo Molnar6053ee32006-01-09 15:59:19 -0800386 return -EINTR;
387 }
388 __set_task_state(task, state);
389
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300390 /* didn't get the lock, go to sleep: */
Ingo Molnar1fb00c62006-06-26 00:24:31 -0700391 spin_unlock_mutex(&lock->wait_lock, flags);
Thomas Gleixnerbd2f5532011-03-21 12:33:18 +0100392 schedule_preempt_disabled();
Ingo Molnar1fb00c62006-06-26 00:24:31 -0700393 spin_lock_mutex(&lock->wait_lock, flags);
Ingo Molnar6053ee32006-01-09 15:59:19 -0800394 }
395
Peter Zijlstra4fe87742007-07-19 01:48:58 -0700396done:
Peter Zijlstrac7e78cf2008-10-16 23:17:09 +0200397 lock_acquired(&lock->dep_map, ip);
Ingo Molnar6053ee32006-01-09 15:59:19 -0800398 /* got the lock - rejoice! */
Peter Zijlstra0d66bf62009-01-12 14:01:47 +0100399 mutex_remove_waiter(lock, &waiter, current_thread_info());
400 mutex_set_owner(lock);
Ingo Molnar6053ee32006-01-09 15:59:19 -0800401
402 /* set it to 0 if there are no waiters left: */
403 if (likely(list_empty(&lock->wait_list)))
404 atomic_set(&lock->count, 0);
405
Ingo Molnar1fb00c62006-06-26 00:24:31 -0700406 spin_unlock_mutex(&lock->wait_lock, flags);
Ingo Molnar6053ee32006-01-09 15:59:19 -0800407
408 debug_mutex_free_waiter(&waiter);
Peter Zijlstra41719b02009-01-14 15:36:26 +0100409 preempt_enable();
Ingo Molnar6053ee32006-01-09 15:59:19 -0800410
Ingo Molnar6053ee32006-01-09 15:59:19 -0800411 return 0;
412}
413
Ingo Molnaref5d4702006-07-03 00:24:55 -0700414#ifdef CONFIG_DEBUG_LOCK_ALLOC
415void __sched
416mutex_lock_nested(struct mutex *lock, unsigned int subclass)
417{
418 might_sleep();
Peter Zijlstrae4c70a62011-05-24 17:12:03 -0700419 __mutex_lock_common(lock, TASK_UNINTERRUPTIBLE, subclass, NULL, _RET_IP_);
Ingo Molnaref5d4702006-07-03 00:24:55 -0700420}
421
422EXPORT_SYMBOL_GPL(mutex_lock_nested);
NeilBrownd63a5a72006-12-08 02:36:17 -0800423
Peter Zijlstrae4c70a62011-05-24 17:12:03 -0700424void __sched
425_mutex_lock_nest_lock(struct mutex *lock, struct lockdep_map *nest)
426{
427 might_sleep();
428 __mutex_lock_common(lock, TASK_UNINTERRUPTIBLE, 0, nest, _RET_IP_);
429}
430
431EXPORT_SYMBOL_GPL(_mutex_lock_nest_lock);
432
NeilBrownd63a5a72006-12-08 02:36:17 -0800433int __sched
Liam R. Howlettad776532007-12-06 17:37:59 -0500434mutex_lock_killable_nested(struct mutex *lock, unsigned int subclass)
435{
436 might_sleep();
Peter Zijlstrae4c70a62011-05-24 17:12:03 -0700437 return __mutex_lock_common(lock, TASK_KILLABLE, subclass, NULL, _RET_IP_);
Liam R. Howlettad776532007-12-06 17:37:59 -0500438}
439EXPORT_SYMBOL_GPL(mutex_lock_killable_nested);
440
441int __sched
NeilBrownd63a5a72006-12-08 02:36:17 -0800442mutex_lock_interruptible_nested(struct mutex *lock, unsigned int subclass)
443{
444 might_sleep();
Peter Zijlstra0d66bf62009-01-12 14:01:47 +0100445 return __mutex_lock_common(lock, TASK_INTERRUPTIBLE,
Peter Zijlstrae4c70a62011-05-24 17:12:03 -0700446 subclass, NULL, _RET_IP_);
NeilBrownd63a5a72006-12-08 02:36:17 -0800447}
448
449EXPORT_SYMBOL_GPL(mutex_lock_interruptible_nested);
Ingo Molnaref5d4702006-07-03 00:24:55 -0700450#endif
451
Ingo Molnar6053ee32006-01-09 15:59:19 -0800452/*
453 * Release the lock, slowpath:
454 */
Harvey Harrison7ad5b3a2008-02-08 04:19:53 -0800455static inline void
Ingo Molnaref5d4702006-07-03 00:24:55 -0700456__mutex_unlock_common_slowpath(atomic_t *lock_count, int nested)
Ingo Molnar6053ee32006-01-09 15:59:19 -0800457{
Ingo Molnar02706642006-01-10 23:15:02 +0100458 struct mutex *lock = container_of(lock_count, struct mutex, count);
Ingo Molnar1fb00c62006-06-26 00:24:31 -0700459 unsigned long flags;
Ingo Molnar6053ee32006-01-09 15:59:19 -0800460
Ingo Molnar1fb00c62006-06-26 00:24:31 -0700461 spin_lock_mutex(&lock->wait_lock, flags);
Ingo Molnaref5d4702006-07-03 00:24:55 -0700462 mutex_release(&lock->dep_map, nested, _RET_IP_);
Ingo Molnar9a11b49a2006-07-03 00:24:33 -0700463 debug_mutex_unlock(lock);
Ingo Molnar6053ee32006-01-09 15:59:19 -0800464
465 /*
466 * some architectures leave the lock unlocked in the fastpath failure
467 * case, others need to leave it locked. In the later case we have to
468 * unlock it here
469 */
470 if (__mutex_slowpath_needs_to_unlock())
471 atomic_set(&lock->count, 1);
472
Ingo Molnar6053ee32006-01-09 15:59:19 -0800473 if (!list_empty(&lock->wait_list)) {
474 /* get the first entry from the wait-list: */
475 struct mutex_waiter *waiter =
476 list_entry(lock->wait_list.next,
477 struct mutex_waiter, list);
478
479 debug_mutex_wake_waiter(lock, waiter);
480
481 wake_up_process(waiter->task);
482 }
483
Ingo Molnar1fb00c62006-06-26 00:24:31 -0700484 spin_unlock_mutex(&lock->wait_lock, flags);
Ingo Molnar6053ee32006-01-09 15:59:19 -0800485}
486
487/*
Ingo Molnar9a11b49a2006-07-03 00:24:33 -0700488 * Release the lock, slowpath:
489 */
Török Edwin7918baa2008-11-24 10:17:42 +0200490static __used noinline void
Ingo Molnar9a11b49a2006-07-03 00:24:33 -0700491__mutex_unlock_slowpath(atomic_t *lock_count)
492{
Ingo Molnaref5d4702006-07-03 00:24:55 -0700493 __mutex_unlock_common_slowpath(lock_count, 1);
Ingo Molnar9a11b49a2006-07-03 00:24:33 -0700494}
495
Peter Zijlstrae4564f72007-10-11 22:11:12 +0200496#ifndef CONFIG_DEBUG_LOCK_ALLOC
Ingo Molnar9a11b49a2006-07-03 00:24:33 -0700497/*
Ingo Molnar6053ee32006-01-09 15:59:19 -0800498 * Here come the less common (and hence less performance-critical) APIs:
499 * mutex_lock_interruptible() and mutex_trylock().
500 */
Harvey Harrison7ad5b3a2008-02-08 04:19:53 -0800501static noinline int __sched
Liam R. Howlettad776532007-12-06 17:37:59 -0500502__mutex_lock_killable_slowpath(atomic_t *lock_count);
503
Harvey Harrison7ad5b3a2008-02-08 04:19:53 -0800504static noinline int __sched
Ingo Molnar9a11b49a2006-07-03 00:24:33 -0700505__mutex_lock_interruptible_slowpath(atomic_t *lock_count);
Ingo Molnar6053ee32006-01-09 15:59:19 -0800506
Randy Dunlapef5dc122010-09-02 15:48:16 -0700507/**
508 * mutex_lock_interruptible - acquire the mutex, interruptible
Ingo Molnar6053ee32006-01-09 15:59:19 -0800509 * @lock: the mutex to be acquired
510 *
511 * Lock the mutex like mutex_lock(), and return 0 if the mutex has
512 * been acquired or sleep until the mutex becomes available. If a
513 * signal arrives while waiting for the lock then this function
514 * returns -EINTR.
515 *
516 * This function is similar to (but not equivalent to) down_interruptible().
517 */
Harvey Harrison7ad5b3a2008-02-08 04:19:53 -0800518int __sched mutex_lock_interruptible(struct mutex *lock)
Ingo Molnar6053ee32006-01-09 15:59:19 -0800519{
Peter Zijlstra0d66bf62009-01-12 14:01:47 +0100520 int ret;
521
Ingo Molnarc544bdb2006-01-10 22:10:36 +0100522 might_sleep();
Peter Zijlstra0d66bf62009-01-12 14:01:47 +0100523 ret = __mutex_fastpath_lock_retval
Ingo Molnar6053ee32006-01-09 15:59:19 -0800524 (&lock->count, __mutex_lock_interruptible_slowpath);
Peter Zijlstra0d66bf62009-01-12 14:01:47 +0100525 if (!ret)
526 mutex_set_owner(lock);
527
528 return ret;
Ingo Molnar6053ee32006-01-09 15:59:19 -0800529}
530
531EXPORT_SYMBOL(mutex_lock_interruptible);
532
Harvey Harrison7ad5b3a2008-02-08 04:19:53 -0800533int __sched mutex_lock_killable(struct mutex *lock)
Liam R. Howlettad776532007-12-06 17:37:59 -0500534{
Peter Zijlstra0d66bf62009-01-12 14:01:47 +0100535 int ret;
536
Liam R. Howlettad776532007-12-06 17:37:59 -0500537 might_sleep();
Peter Zijlstra0d66bf62009-01-12 14:01:47 +0100538 ret = __mutex_fastpath_lock_retval
Liam R. Howlettad776532007-12-06 17:37:59 -0500539 (&lock->count, __mutex_lock_killable_slowpath);
Peter Zijlstra0d66bf62009-01-12 14:01:47 +0100540 if (!ret)
541 mutex_set_owner(lock);
542
543 return ret;
Liam R. Howlettad776532007-12-06 17:37:59 -0500544}
545EXPORT_SYMBOL(mutex_lock_killable);
546
Török Edwin7918baa2008-11-24 10:17:42 +0200547static __used noinline void __sched
Peter Zijlstrae4564f72007-10-11 22:11:12 +0200548__mutex_lock_slowpath(atomic_t *lock_count)
549{
550 struct mutex *lock = container_of(lock_count, struct mutex, count);
551
Peter Zijlstrae4c70a62011-05-24 17:12:03 -0700552 __mutex_lock_common(lock, TASK_UNINTERRUPTIBLE, 0, NULL, _RET_IP_);
Peter Zijlstrae4564f72007-10-11 22:11:12 +0200553}
554
Harvey Harrison7ad5b3a2008-02-08 04:19:53 -0800555static noinline int __sched
Liam R. Howlettad776532007-12-06 17:37:59 -0500556__mutex_lock_killable_slowpath(atomic_t *lock_count)
557{
558 struct mutex *lock = container_of(lock_count, struct mutex, count);
559
Peter Zijlstrae4c70a62011-05-24 17:12:03 -0700560 return __mutex_lock_common(lock, TASK_KILLABLE, 0, NULL, _RET_IP_);
Liam R. Howlettad776532007-12-06 17:37:59 -0500561}
562
Harvey Harrison7ad5b3a2008-02-08 04:19:53 -0800563static noinline int __sched
Ingo Molnar9a11b49a2006-07-03 00:24:33 -0700564__mutex_lock_interruptible_slowpath(atomic_t *lock_count)
Ingo Molnar6053ee32006-01-09 15:59:19 -0800565{
566 struct mutex *lock = container_of(lock_count, struct mutex, count);
567
Peter Zijlstrae4c70a62011-05-24 17:12:03 -0700568 return __mutex_lock_common(lock, TASK_INTERRUPTIBLE, 0, NULL, _RET_IP_);
Ingo Molnar6053ee32006-01-09 15:59:19 -0800569}
Peter Zijlstrae4564f72007-10-11 22:11:12 +0200570#endif
Ingo Molnar6053ee32006-01-09 15:59:19 -0800571
572/*
573 * Spinlock based trylock, we take the spinlock and check whether we
574 * can get the lock:
575 */
576static inline int __mutex_trylock_slowpath(atomic_t *lock_count)
577{
578 struct mutex *lock = container_of(lock_count, struct mutex, count);
Ingo Molnar1fb00c62006-06-26 00:24:31 -0700579 unsigned long flags;
Ingo Molnar6053ee32006-01-09 15:59:19 -0800580 int prev;
581
Ingo Molnar1fb00c62006-06-26 00:24:31 -0700582 spin_lock_mutex(&lock->wait_lock, flags);
Ingo Molnar6053ee32006-01-09 15:59:19 -0800583
584 prev = atomic_xchg(&lock->count, -1);
Ingo Molnaref5d4702006-07-03 00:24:55 -0700585 if (likely(prev == 1)) {
Peter Zijlstra0d66bf62009-01-12 14:01:47 +0100586 mutex_set_owner(lock);
Ingo Molnaref5d4702006-07-03 00:24:55 -0700587 mutex_acquire(&lock->dep_map, 0, 1, _RET_IP_);
588 }
Peter Zijlstra0d66bf62009-01-12 14:01:47 +0100589
Ingo Molnar6053ee32006-01-09 15:59:19 -0800590 /* Set it back to 0 if there are no waiters: */
591 if (likely(list_empty(&lock->wait_list)))
592 atomic_set(&lock->count, 0);
593
Ingo Molnar1fb00c62006-06-26 00:24:31 -0700594 spin_unlock_mutex(&lock->wait_lock, flags);
Ingo Molnar6053ee32006-01-09 15:59:19 -0800595
596 return prev == 1;
597}
598
Randy Dunlapef5dc122010-09-02 15:48:16 -0700599/**
600 * mutex_trylock - try to acquire the mutex, without waiting
Ingo Molnar6053ee32006-01-09 15:59:19 -0800601 * @lock: the mutex to be acquired
602 *
603 * Try to acquire the mutex atomically. Returns 1 if the mutex
604 * has been acquired successfully, and 0 on contention.
605 *
606 * NOTE: this function follows the spin_trylock() convention, so
Randy Dunlapef5dc122010-09-02 15:48:16 -0700607 * it is negated from the down_trylock() return values! Be careful
Ingo Molnar6053ee32006-01-09 15:59:19 -0800608 * about this when converting semaphore users to mutexes.
609 *
610 * This function must not be used in interrupt context. The
611 * mutex must be released by the same task that acquired it.
612 */
Harvey Harrison7ad5b3a2008-02-08 04:19:53 -0800613int __sched mutex_trylock(struct mutex *lock)
Ingo Molnar6053ee32006-01-09 15:59:19 -0800614{
Peter Zijlstra0d66bf62009-01-12 14:01:47 +0100615 int ret;
616
617 ret = __mutex_fastpath_trylock(&lock->count, __mutex_trylock_slowpath);
618 if (ret)
619 mutex_set_owner(lock);
620
621 return ret;
Ingo Molnar6053ee32006-01-09 15:59:19 -0800622}
Ingo Molnar6053ee32006-01-09 15:59:19 -0800623EXPORT_SYMBOL(mutex_trylock);
Andrew Mortona511e3f2009-04-29 15:59:58 -0700624
625/**
626 * atomic_dec_and_mutex_lock - return holding mutex if we dec to 0
627 * @cnt: the atomic which we are to dec
628 * @lock: the mutex to return holding if we dec to 0
629 *
630 * return true and hold lock if we dec to 0, return false otherwise
631 */
632int atomic_dec_and_mutex_lock(atomic_t *cnt, struct mutex *lock)
633{
634 /* dec if we can't possibly hit 0 */
635 if (atomic_add_unless(cnt, -1, 1))
636 return 0;
637 /* we might hit 0, so take the lock */
638 mutex_lock(lock);
639 if (!atomic_dec_and_test(cnt)) {
640 /* when we actually did the dec, we didn't hit 0 */
641 mutex_unlock(lock);
642 return 0;
643 }
644 /* we hit 0, and we hold the lock */
645 return 1;
646}
647EXPORT_SYMBOL(atomic_dec_and_mutex_lock);