blob: fd95eaa672e6ce1e6d1cfd99b73e34eeea0a33d7 [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>
22#include <linux/module.h>
23#include <linux/spinlock.h>
24#include <linux/interrupt.h>
Ingo Molnar9a11b49a2006-07-03 00:24:33 -070025#include <linux/debug_locks.h>
Ingo Molnar6053ee32006-01-09 15:59:19 -080026
27/*
28 * In the DEBUG case we are using the "NULL fastpath" for mutexes,
29 * which forces all calls into the slowpath:
30 */
31#ifdef CONFIG_DEBUG_MUTEXES
32# include "mutex-debug.h"
33# include <asm-generic/mutex-null.h>
34#else
35# include "mutex.h"
36# include <asm/mutex.h>
37#endif
38
39/***
40 * mutex_init - initialize the mutex
41 * @lock: the mutex to be initialized
Randy Dunlap0e241ff2008-07-24 16:58:42 -070042 * @key: the lock_class_key for the class; used by mutex lock debugging
Ingo Molnar6053ee32006-01-09 15:59:19 -080043 *
44 * Initialize the mutex to unlocked state.
45 *
46 * It is not allowed to initialize an already locked mutex.
47 */
Ingo Molnaref5d4702006-07-03 00:24:55 -070048void
49__mutex_init(struct mutex *lock, const char *name, struct lock_class_key *key)
Ingo Molnar6053ee32006-01-09 15:59:19 -080050{
51 atomic_set(&lock->count, 1);
52 spin_lock_init(&lock->wait_lock);
53 INIT_LIST_HEAD(&lock->wait_list);
Peter Zijlstra0d66bf62009-01-12 14:01:47 +010054 mutex_clear_owner(lock);
Ingo Molnar6053ee32006-01-09 15:59:19 -080055
Ingo Molnaref5d4702006-07-03 00:24:55 -070056 debug_mutex_init(lock, name, key);
Ingo Molnar6053ee32006-01-09 15:59:19 -080057}
58
59EXPORT_SYMBOL(__mutex_init);
60
Peter Zijlstrae4564f72007-10-11 22:11:12 +020061#ifndef CONFIG_DEBUG_LOCK_ALLOC
Ingo Molnar6053ee32006-01-09 15:59:19 -080062/*
63 * We split the mutex lock/unlock logic into separate fastpath and
64 * slowpath functions, to reduce the register pressure on the fastpath.
65 * We also put the fastpath first in the kernel image, to make sure the
66 * branch is predicted by the CPU as default-untaken.
67 */
Török Edwin7918baa2008-11-24 10:17:42 +020068static __used noinline void __sched
Ingo Molnar9a11b49a2006-07-03 00:24:33 -070069__mutex_lock_slowpath(atomic_t *lock_count);
Ingo Molnar6053ee32006-01-09 15:59:19 -080070
71/***
72 * mutex_lock - acquire the mutex
73 * @lock: the mutex to be acquired
74 *
75 * Lock the mutex exclusively for this task. If the mutex is not
76 * available right now, it will sleep until it can get it.
77 *
78 * The mutex must later on be released by the same task that
79 * acquired it. Recursive locking is not allowed. The task
80 * may not exit without first unlocking the mutex. Also, kernel
81 * memory where the mutex resides mutex must not be freed with
82 * the mutex still locked. The mutex must first be initialized
83 * (or statically defined) before it can be locked. memset()-ing
84 * the mutex to 0 is not allowed.
85 *
86 * ( The CONFIG_DEBUG_MUTEXES .config option turns on debugging
87 * checks that will enforce the restrictions and will also do
88 * deadlock debugging. )
89 *
90 * This function is similar to (but not equivalent to) down().
91 */
H. Peter Anvinb09d2502009-04-01 17:21:56 -070092void __sched mutex_lock(struct mutex *lock)
Ingo Molnar6053ee32006-01-09 15:59:19 -080093{
Ingo Molnarc544bdb2006-01-10 22:10:36 +010094 might_sleep();
Ingo Molnar6053ee32006-01-09 15:59:19 -080095 /*
96 * The locking fastpath is the 1->0 transition from
97 * 'unlocked' into 'locked' state.
Ingo Molnar6053ee32006-01-09 15:59:19 -080098 */
99 __mutex_fastpath_lock(&lock->count, __mutex_lock_slowpath);
Peter Zijlstra0d66bf62009-01-12 14:01:47 +0100100 mutex_set_owner(lock);
Ingo Molnar6053ee32006-01-09 15:59:19 -0800101}
102
103EXPORT_SYMBOL(mutex_lock);
Peter Zijlstrae4564f72007-10-11 22:11:12 +0200104#endif
Ingo Molnar6053ee32006-01-09 15:59:19 -0800105
Török Edwin7918baa2008-11-24 10:17:42 +0200106static __used noinline void __sched __mutex_unlock_slowpath(atomic_t *lock_count);
Ingo Molnar6053ee32006-01-09 15:59:19 -0800107
108/***
109 * mutex_unlock - release the mutex
110 * @lock: the mutex to be released
111 *
112 * Unlock a mutex that has been locked by this task previously.
113 *
114 * This function must not be used in interrupt context. Unlocking
115 * of a not locked mutex is not allowed.
116 *
117 * This function is similar to (but not equivalent to) up().
118 */
Harvey Harrison7ad5b3a2008-02-08 04:19:53 -0800119void __sched mutex_unlock(struct mutex *lock)
Ingo Molnar6053ee32006-01-09 15:59:19 -0800120{
121 /*
122 * The unlocking fastpath is the 0->1 transition from 'locked'
123 * into 'unlocked' state:
Ingo Molnar6053ee32006-01-09 15:59:19 -0800124 */
Peter Zijlstra0d66bf62009-01-12 14:01:47 +0100125#ifndef CONFIG_DEBUG_MUTEXES
126 /*
127 * When debugging is enabled we must not clear the owner before time,
128 * the slow path will always be taken, and that clears the owner field
129 * after verifying that it was indeed current.
130 */
131 mutex_clear_owner(lock);
132#endif
Ingo Molnar6053ee32006-01-09 15:59:19 -0800133 __mutex_fastpath_unlock(&lock->count, __mutex_unlock_slowpath);
134}
135
136EXPORT_SYMBOL(mutex_unlock);
137
138/*
139 * Lock a mutex (possibly interruptible), slowpath:
140 */
141static inline int __sched
Peter Zijlstrae4564f72007-10-11 22:11:12 +0200142__mutex_lock_common(struct mutex *lock, long state, unsigned int subclass,
143 unsigned long ip)
Ingo Molnar6053ee32006-01-09 15:59:19 -0800144{
145 struct task_struct *task = current;
146 struct mutex_waiter waiter;
Ingo Molnar1fb00c62006-06-26 00:24:31 -0700147 unsigned long flags;
Ingo Molnar6053ee32006-01-09 15:59:19 -0800148
Peter Zijlstra41719b02009-01-14 15:36:26 +0100149 preempt_disable();
Peter Zijlstra0d66bf62009-01-12 14:01:47 +0100150 mutex_acquire(&lock->dep_map, subclass, 0, ip);
151#if defined(CONFIG_SMP) && !defined(CONFIG_DEBUG_MUTEXES)
152 /*
153 * Optimistic spinning.
154 *
155 * We try to spin for acquisition when we find that there are no
156 * pending waiters and the lock owner is currently running on a
157 * (different) CPU.
158 *
159 * The rationale is that if the lock owner is running, it is likely to
160 * release the lock soon.
161 *
162 * Since this needs the lock owner, and this mutex implementation
163 * doesn't track the owner atomically in the lock field, we need to
164 * track it non-atomically.
165 *
166 * We can't do this for DEBUG_MUTEXES because that relies on wait_lock
167 * to serialize everything.
168 */
169
170 for (;;) {
171 struct thread_info *owner;
172
173 /*
Peter Zijlstra0d66bf62009-01-12 14:01:47 +0100174 * If there's an owner, wait for it to either
175 * release the lock or go to sleep.
176 */
177 owner = ACCESS_ONCE(lock->owner);
178 if (owner && !mutex_spin_on_owner(lock, owner))
179 break;
180
Chris Masonac6e60e2009-01-14 17:29:31 +0100181 if (atomic_cmpxchg(&lock->count, 1, 0) == 1) {
182 lock_acquired(&lock->dep_map, ip);
183 mutex_set_owner(lock);
184 preempt_enable();
185 return 0;
186 }
187
Peter Zijlstra0d66bf62009-01-12 14:01:47 +0100188 /*
189 * When there's no owner, we might have preempted between the
190 * owner acquiring the lock and setting the owner field. If
191 * we're an RT task that will live-lock because we won't let
192 * the owner complete.
193 */
194 if (!owner && (need_resched() || rt_task(task)))
195 break;
196
Peter Zijlstra0d66bf62009-01-12 14:01:47 +0100197 /*
198 * The cpu_relax() call is a compiler barrier which forces
199 * everything in this loop to be re-loaded. We don't need
200 * memory barriers as we'll eventually observe the right
201 * values at the cost of a few extra spins.
202 */
203 cpu_relax();
204 }
205#endif
Ingo Molnar1fb00c62006-06-26 00:24:31 -0700206 spin_lock_mutex(&lock->wait_lock, flags);
Ingo Molnar6053ee32006-01-09 15:59:19 -0800207
Ingo Molnar9a11b49a2006-07-03 00:24:33 -0700208 debug_mutex_lock_common(lock, &waiter);
Roman Zippelc9f4f062007-05-09 02:35:16 -0700209 debug_mutex_add_waiter(lock, &waiter, task_thread_info(task));
Ingo Molnar6053ee32006-01-09 15:59:19 -0800210
211 /* add waiting tasks to the end of the waitqueue (FIFO): */
212 list_add_tail(&waiter.list, &lock->wait_list);
213 waiter.task = task;
214
Peter Zijlstra93d81d12009-01-14 15:32:51 +0100215 if (atomic_xchg(&lock->count, -1) == 1)
Peter Zijlstra4fe87742007-07-19 01:48:58 -0700216 goto done;
217
Peter Zijlstrae4564f72007-10-11 22:11:12 +0200218 lock_contended(&lock->dep_map, ip);
Peter Zijlstra4fe87742007-07-19 01:48:58 -0700219
Ingo Molnar6053ee32006-01-09 15:59:19 -0800220 for (;;) {
221 /*
222 * Lets try to take the lock again - this is needed even if
223 * we get here for the first time (shortly after failing to
224 * acquire the lock), to make sure that we get a wakeup once
225 * it's unlocked. Later on, if we sleep, this is the
226 * operation that gives us the lock. We xchg it to -1, so
227 * that when we release the lock, we properly wake up the
228 * other waiters:
229 */
Peter Zijlstra93d81d12009-01-14 15:32:51 +0100230 if (atomic_xchg(&lock->count, -1) == 1)
Ingo Molnar6053ee32006-01-09 15:59:19 -0800231 break;
232
233 /*
234 * got a signal? (This code gets eliminated in the
235 * TASK_UNINTERRUPTIBLE case.)
236 */
Oleg Nesterov6ad36762008-06-08 21:20:42 +0400237 if (unlikely(signal_pending_state(state, task))) {
Liam R. Howlettad776532007-12-06 17:37:59 -0500238 mutex_remove_waiter(lock, &waiter,
239 task_thread_info(task));
Peter Zijlstrae4564f72007-10-11 22:11:12 +0200240 mutex_release(&lock->dep_map, 1, ip);
Ingo Molnar1fb00c62006-06-26 00:24:31 -0700241 spin_unlock_mutex(&lock->wait_lock, flags);
Ingo Molnar6053ee32006-01-09 15:59:19 -0800242
243 debug_mutex_free_waiter(&waiter);
Peter Zijlstra41719b02009-01-14 15:36:26 +0100244 preempt_enable();
Ingo Molnar6053ee32006-01-09 15:59:19 -0800245 return -EINTR;
246 }
247 __set_task_state(task, state);
248
249 /* didnt get the lock, go to sleep: */
Ingo Molnar1fb00c62006-06-26 00:24:31 -0700250 spin_unlock_mutex(&lock->wait_lock, flags);
Peter Zijlstra41719b02009-01-14 15:36:26 +0100251 __schedule();
Ingo Molnar1fb00c62006-06-26 00:24:31 -0700252 spin_lock_mutex(&lock->wait_lock, flags);
Ingo Molnar6053ee32006-01-09 15:59:19 -0800253 }
254
Peter Zijlstra4fe87742007-07-19 01:48:58 -0700255done:
Peter Zijlstrac7e78cf2008-10-16 23:17:09 +0200256 lock_acquired(&lock->dep_map, ip);
Ingo Molnar6053ee32006-01-09 15:59:19 -0800257 /* got the lock - rejoice! */
Peter Zijlstra0d66bf62009-01-12 14:01:47 +0100258 mutex_remove_waiter(lock, &waiter, current_thread_info());
259 mutex_set_owner(lock);
Ingo Molnar6053ee32006-01-09 15:59:19 -0800260
261 /* set it to 0 if there are no waiters left: */
262 if (likely(list_empty(&lock->wait_list)))
263 atomic_set(&lock->count, 0);
264
Ingo Molnar1fb00c62006-06-26 00:24:31 -0700265 spin_unlock_mutex(&lock->wait_lock, flags);
Ingo Molnar6053ee32006-01-09 15:59:19 -0800266
267 debug_mutex_free_waiter(&waiter);
Peter Zijlstra41719b02009-01-14 15:36:26 +0100268 preempt_enable();
Ingo Molnar6053ee32006-01-09 15:59:19 -0800269
Ingo Molnar6053ee32006-01-09 15:59:19 -0800270 return 0;
271}
272
Ingo Molnaref5d4702006-07-03 00:24:55 -0700273#ifdef CONFIG_DEBUG_LOCK_ALLOC
274void __sched
275mutex_lock_nested(struct mutex *lock, unsigned int subclass)
276{
277 might_sleep();
Peter Zijlstrae4564f72007-10-11 22:11:12 +0200278 __mutex_lock_common(lock, TASK_UNINTERRUPTIBLE, subclass, _RET_IP_);
Ingo Molnaref5d4702006-07-03 00:24:55 -0700279}
280
281EXPORT_SYMBOL_GPL(mutex_lock_nested);
NeilBrownd63a5a72006-12-08 02:36:17 -0800282
283int __sched
Liam R. Howlettad776532007-12-06 17:37:59 -0500284mutex_lock_killable_nested(struct mutex *lock, unsigned int subclass)
285{
286 might_sleep();
287 return __mutex_lock_common(lock, TASK_KILLABLE, subclass, _RET_IP_);
288}
289EXPORT_SYMBOL_GPL(mutex_lock_killable_nested);
290
291int __sched
NeilBrownd63a5a72006-12-08 02:36:17 -0800292mutex_lock_interruptible_nested(struct mutex *lock, unsigned int subclass)
293{
294 might_sleep();
Peter Zijlstra0d66bf62009-01-12 14:01:47 +0100295 return __mutex_lock_common(lock, TASK_INTERRUPTIBLE,
296 subclass, _RET_IP_);
NeilBrownd63a5a72006-12-08 02:36:17 -0800297}
298
299EXPORT_SYMBOL_GPL(mutex_lock_interruptible_nested);
Ingo Molnaref5d4702006-07-03 00:24:55 -0700300#endif
301
Ingo Molnar6053ee32006-01-09 15:59:19 -0800302/*
303 * Release the lock, slowpath:
304 */
Harvey Harrison7ad5b3a2008-02-08 04:19:53 -0800305static inline void
Ingo Molnaref5d4702006-07-03 00:24:55 -0700306__mutex_unlock_common_slowpath(atomic_t *lock_count, int nested)
Ingo Molnar6053ee32006-01-09 15:59:19 -0800307{
Ingo Molnar02706642006-01-10 23:15:02 +0100308 struct mutex *lock = container_of(lock_count, struct mutex, count);
Ingo Molnar1fb00c62006-06-26 00:24:31 -0700309 unsigned long flags;
Ingo Molnar6053ee32006-01-09 15:59:19 -0800310
Ingo Molnar1fb00c62006-06-26 00:24:31 -0700311 spin_lock_mutex(&lock->wait_lock, flags);
Ingo Molnaref5d4702006-07-03 00:24:55 -0700312 mutex_release(&lock->dep_map, nested, _RET_IP_);
Ingo Molnar9a11b49a2006-07-03 00:24:33 -0700313 debug_mutex_unlock(lock);
Ingo Molnar6053ee32006-01-09 15:59:19 -0800314
315 /*
316 * some architectures leave the lock unlocked in the fastpath failure
317 * case, others need to leave it locked. In the later case we have to
318 * unlock it here
319 */
320 if (__mutex_slowpath_needs_to_unlock())
321 atomic_set(&lock->count, 1);
322
Ingo Molnar6053ee32006-01-09 15:59:19 -0800323 if (!list_empty(&lock->wait_list)) {
324 /* get the first entry from the wait-list: */
325 struct mutex_waiter *waiter =
326 list_entry(lock->wait_list.next,
327 struct mutex_waiter, list);
328
329 debug_mutex_wake_waiter(lock, waiter);
330
331 wake_up_process(waiter->task);
332 }
333
Ingo Molnar1fb00c62006-06-26 00:24:31 -0700334 spin_unlock_mutex(&lock->wait_lock, flags);
Ingo Molnar6053ee32006-01-09 15:59:19 -0800335}
336
337/*
Ingo Molnar9a11b49a2006-07-03 00:24:33 -0700338 * Release the lock, slowpath:
339 */
Török Edwin7918baa2008-11-24 10:17:42 +0200340static __used noinline void
Ingo Molnar9a11b49a2006-07-03 00:24:33 -0700341__mutex_unlock_slowpath(atomic_t *lock_count)
342{
Ingo Molnaref5d4702006-07-03 00:24:55 -0700343 __mutex_unlock_common_slowpath(lock_count, 1);
Ingo Molnar9a11b49a2006-07-03 00:24:33 -0700344}
345
Peter Zijlstrae4564f72007-10-11 22:11:12 +0200346#ifndef CONFIG_DEBUG_LOCK_ALLOC
Ingo Molnar9a11b49a2006-07-03 00:24:33 -0700347/*
Ingo Molnar6053ee32006-01-09 15:59:19 -0800348 * Here come the less common (and hence less performance-critical) APIs:
349 * mutex_lock_interruptible() and mutex_trylock().
350 */
Harvey Harrison7ad5b3a2008-02-08 04:19:53 -0800351static noinline int __sched
Liam R. Howlettad776532007-12-06 17:37:59 -0500352__mutex_lock_killable_slowpath(atomic_t *lock_count);
353
Harvey Harrison7ad5b3a2008-02-08 04:19:53 -0800354static noinline int __sched
Ingo Molnar9a11b49a2006-07-03 00:24:33 -0700355__mutex_lock_interruptible_slowpath(atomic_t *lock_count);
Ingo Molnar6053ee32006-01-09 15:59:19 -0800356
357/***
358 * mutex_lock_interruptible - acquire the mutex, interruptable
359 * @lock: the mutex to be acquired
360 *
361 * Lock the mutex like mutex_lock(), and return 0 if the mutex has
362 * been acquired or sleep until the mutex becomes available. If a
363 * signal arrives while waiting for the lock then this function
364 * returns -EINTR.
365 *
366 * This function is similar to (but not equivalent to) down_interruptible().
367 */
Harvey Harrison7ad5b3a2008-02-08 04:19:53 -0800368int __sched mutex_lock_interruptible(struct mutex *lock)
Ingo Molnar6053ee32006-01-09 15:59:19 -0800369{
Peter Zijlstra0d66bf62009-01-12 14:01:47 +0100370 int ret;
371
Ingo Molnarc544bdb2006-01-10 22:10:36 +0100372 might_sleep();
Peter Zijlstra0d66bf62009-01-12 14:01:47 +0100373 ret = __mutex_fastpath_lock_retval
Ingo Molnar6053ee32006-01-09 15:59:19 -0800374 (&lock->count, __mutex_lock_interruptible_slowpath);
Peter Zijlstra0d66bf62009-01-12 14:01:47 +0100375 if (!ret)
376 mutex_set_owner(lock);
377
378 return ret;
Ingo Molnar6053ee32006-01-09 15:59:19 -0800379}
380
381EXPORT_SYMBOL(mutex_lock_interruptible);
382
Harvey Harrison7ad5b3a2008-02-08 04:19:53 -0800383int __sched mutex_lock_killable(struct mutex *lock)
Liam R. Howlettad776532007-12-06 17:37:59 -0500384{
Peter Zijlstra0d66bf62009-01-12 14:01:47 +0100385 int ret;
386
Liam R. Howlettad776532007-12-06 17:37:59 -0500387 might_sleep();
Peter Zijlstra0d66bf62009-01-12 14:01:47 +0100388 ret = __mutex_fastpath_lock_retval
Liam R. Howlettad776532007-12-06 17:37:59 -0500389 (&lock->count, __mutex_lock_killable_slowpath);
Peter Zijlstra0d66bf62009-01-12 14:01:47 +0100390 if (!ret)
391 mutex_set_owner(lock);
392
393 return ret;
Liam R. Howlettad776532007-12-06 17:37:59 -0500394}
395EXPORT_SYMBOL(mutex_lock_killable);
396
Török Edwin7918baa2008-11-24 10:17:42 +0200397static __used noinline void __sched
Peter Zijlstrae4564f72007-10-11 22:11:12 +0200398__mutex_lock_slowpath(atomic_t *lock_count)
399{
400 struct mutex *lock = container_of(lock_count, struct mutex, count);
401
402 __mutex_lock_common(lock, TASK_UNINTERRUPTIBLE, 0, _RET_IP_);
403}
404
Harvey Harrison7ad5b3a2008-02-08 04:19:53 -0800405static noinline int __sched
Liam R. Howlettad776532007-12-06 17:37:59 -0500406__mutex_lock_killable_slowpath(atomic_t *lock_count)
407{
408 struct mutex *lock = container_of(lock_count, struct mutex, count);
409
410 return __mutex_lock_common(lock, TASK_KILLABLE, 0, _RET_IP_);
411}
412
Harvey Harrison7ad5b3a2008-02-08 04:19:53 -0800413static noinline int __sched
Ingo Molnar9a11b49a2006-07-03 00:24:33 -0700414__mutex_lock_interruptible_slowpath(atomic_t *lock_count)
Ingo Molnar6053ee32006-01-09 15:59:19 -0800415{
416 struct mutex *lock = container_of(lock_count, struct mutex, count);
417
Peter Zijlstrae4564f72007-10-11 22:11:12 +0200418 return __mutex_lock_common(lock, TASK_INTERRUPTIBLE, 0, _RET_IP_);
Ingo Molnar6053ee32006-01-09 15:59:19 -0800419}
Peter Zijlstrae4564f72007-10-11 22:11:12 +0200420#endif
Ingo Molnar6053ee32006-01-09 15:59:19 -0800421
422/*
423 * Spinlock based trylock, we take the spinlock and check whether we
424 * can get the lock:
425 */
426static inline int __mutex_trylock_slowpath(atomic_t *lock_count)
427{
428 struct mutex *lock = container_of(lock_count, struct mutex, count);
Ingo Molnar1fb00c62006-06-26 00:24:31 -0700429 unsigned long flags;
Ingo Molnar6053ee32006-01-09 15:59:19 -0800430 int prev;
431
Ingo Molnar1fb00c62006-06-26 00:24:31 -0700432 spin_lock_mutex(&lock->wait_lock, flags);
Ingo Molnar6053ee32006-01-09 15:59:19 -0800433
434 prev = atomic_xchg(&lock->count, -1);
Ingo Molnaref5d4702006-07-03 00:24:55 -0700435 if (likely(prev == 1)) {
Peter Zijlstra0d66bf62009-01-12 14:01:47 +0100436 mutex_set_owner(lock);
Ingo Molnaref5d4702006-07-03 00:24:55 -0700437 mutex_acquire(&lock->dep_map, 0, 1, _RET_IP_);
438 }
Peter Zijlstra0d66bf62009-01-12 14:01:47 +0100439
Ingo Molnar6053ee32006-01-09 15:59:19 -0800440 /* Set it back to 0 if there are no waiters: */
441 if (likely(list_empty(&lock->wait_list)))
442 atomic_set(&lock->count, 0);
443
Ingo Molnar1fb00c62006-06-26 00:24:31 -0700444 spin_unlock_mutex(&lock->wait_lock, flags);
Ingo Molnar6053ee32006-01-09 15:59:19 -0800445
446 return prev == 1;
447}
448
449/***
450 * mutex_trylock - try acquire the mutex, without waiting
451 * @lock: the mutex to be acquired
452 *
453 * Try to acquire the mutex atomically. Returns 1 if the mutex
454 * has been acquired successfully, and 0 on contention.
455 *
456 * NOTE: this function follows the spin_trylock() convention, so
457 * it is negated to the down_trylock() return values! Be careful
458 * about this when converting semaphore users to mutexes.
459 *
460 * This function must not be used in interrupt context. The
461 * mutex must be released by the same task that acquired it.
462 */
Harvey Harrison7ad5b3a2008-02-08 04:19:53 -0800463int __sched mutex_trylock(struct mutex *lock)
Ingo Molnar6053ee32006-01-09 15:59:19 -0800464{
Peter Zijlstra0d66bf62009-01-12 14:01:47 +0100465 int ret;
466
467 ret = __mutex_fastpath_trylock(&lock->count, __mutex_trylock_slowpath);
468 if (ret)
469 mutex_set_owner(lock);
470
471 return ret;
Ingo Molnar6053ee32006-01-09 15:59:19 -0800472}
473
474EXPORT_SYMBOL(mutex_trylock);