blob: 7ff48c55a98bb69c8fa82eeb1c1d6481499d5cd4 [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>
Maarten Lankhorst1b375dc2013-07-05 09:29:32 +020021#include <linux/ww_mutex.h>
Ingo Molnar6053ee32006-01-09 15:59:19 -080022#include <linux/sched.h>
Clark Williams8bd75c72013-02-07 09:47:07 -060023#include <linux/sched/rt.h>
Paul Gortmaker9984de12011-05-23 14:51:41 -040024#include <linux/export.h>
Ingo Molnar6053ee32006-01-09 15:59:19 -080025#include <linux/spinlock.h>
26#include <linux/interrupt.h>
Ingo Molnar9a11b49a2006-07-03 00:24:33 -070027#include <linux/debug_locks.h>
Ingo Molnar6053ee32006-01-09 15:59:19 -080028
29/*
30 * In the DEBUG case we are using the "NULL fastpath" for mutexes,
31 * which forces all calls into the slowpath:
32 */
33#ifdef CONFIG_DEBUG_MUTEXES
34# include "mutex-debug.h"
35# include <asm-generic/mutex-null.h>
36#else
37# include "mutex.h"
38# include <asm/mutex.h>
39#endif
40
Waiman Long0dc8c732013-04-17 15:23:12 -040041/*
Waiman Longcc189d22013-04-17 15:23:14 -040042 * A negative mutex count indicates that waiters are sleeping waiting for the
43 * mutex.
Waiman Long0dc8c732013-04-17 15:23:12 -040044 */
Waiman Long0dc8c732013-04-17 15:23:12 -040045#define MUTEX_SHOW_NO_WAITER(mutex) (atomic_read(&(mutex)->count) >= 0)
Waiman Long0dc8c732013-04-17 15:23:12 -040046
Ingo Molnaref5d4702006-07-03 00:24:55 -070047void
48__mutex_init(struct mutex *lock, const char *name, struct lock_class_key *key)
Ingo Molnar6053ee32006-01-09 15:59:19 -080049{
50 atomic_set(&lock->count, 1);
51 spin_lock_init(&lock->wait_lock);
52 INIT_LIST_HEAD(&lock->wait_list);
Peter Zijlstra0d66bf62009-01-12 14:01:47 +010053 mutex_clear_owner(lock);
Waiman Long2bd2c922013-04-17 15:23:13 -040054#ifdef CONFIG_MUTEX_SPIN_ON_OWNER
55 lock->spin_mlock = NULL;
56#endif
Ingo Molnar6053ee32006-01-09 15:59:19 -080057
Ingo Molnaref5d4702006-07-03 00:24:55 -070058 debug_mutex_init(lock, name, key);
Ingo Molnar6053ee32006-01-09 15:59:19 -080059}
60
61EXPORT_SYMBOL(__mutex_init);
62
Peter Zijlstrae4564f72007-10-11 22:11:12 +020063#ifndef CONFIG_DEBUG_LOCK_ALLOC
Ingo Molnar6053ee32006-01-09 15:59:19 -080064/*
65 * We split the mutex lock/unlock logic into separate fastpath and
66 * slowpath functions, to reduce the register pressure on the fastpath.
67 * We also put the fastpath first in the kernel image, to make sure the
68 * branch is predicted by the CPU as default-untaken.
69 */
Török Edwin7918baa2008-11-24 10:17:42 +020070static __used noinline void __sched
Ingo Molnar9a11b49a2006-07-03 00:24:33 -070071__mutex_lock_slowpath(atomic_t *lock_count);
Ingo Molnar6053ee32006-01-09 15:59:19 -080072
Randy Dunlapef5dc122010-09-02 15:48:16 -070073/**
Ingo Molnar6053ee32006-01-09 15:59:19 -080074 * mutex_lock - acquire the mutex
75 * @lock: the mutex to be acquired
76 *
77 * Lock the mutex exclusively for this task. If the mutex is not
78 * available right now, it will sleep until it can get it.
79 *
80 * The mutex must later on be released by the same task that
81 * acquired it. Recursive locking is not allowed. The task
82 * may not exit without first unlocking the mutex. Also, kernel
83 * memory where the mutex resides mutex must not be freed with
84 * the mutex still locked. The mutex must first be initialized
85 * (or statically defined) before it can be locked. memset()-ing
86 * the mutex to 0 is not allowed.
87 *
88 * ( The CONFIG_DEBUG_MUTEXES .config option turns on debugging
89 * checks that will enforce the restrictions and will also do
90 * deadlock debugging. )
91 *
92 * This function is similar to (but not equivalent to) down().
93 */
H. Peter Anvinb09d2502009-04-01 17:21:56 -070094void __sched mutex_lock(struct mutex *lock)
Ingo Molnar6053ee32006-01-09 15:59:19 -080095{
Ingo Molnarc544bdb2006-01-10 22:10:36 +010096 might_sleep();
Ingo Molnar6053ee32006-01-09 15:59:19 -080097 /*
98 * The locking fastpath is the 1->0 transition from
99 * 'unlocked' into 'locked' state.
Ingo Molnar6053ee32006-01-09 15:59:19 -0800100 */
101 __mutex_fastpath_lock(&lock->count, __mutex_lock_slowpath);
Peter Zijlstra0d66bf62009-01-12 14:01:47 +0100102 mutex_set_owner(lock);
Ingo Molnar6053ee32006-01-09 15:59:19 -0800103}
104
105EXPORT_SYMBOL(mutex_lock);
Peter Zijlstrae4564f72007-10-11 22:11:12 +0200106#endif
Ingo Molnar6053ee32006-01-09 15:59:19 -0800107
Waiman Long41fcb9f2013-04-17 15:23:11 -0400108#ifdef CONFIG_MUTEX_SPIN_ON_OWNER
109/*
Waiman Long2bd2c922013-04-17 15:23:13 -0400110 * In order to avoid a stampede of mutex spinners from acquiring the mutex
111 * more or less simultaneously, the spinners need to acquire a MCS lock
112 * first before spinning on the owner field.
113 *
114 * We don't inline mspin_lock() so that perf can correctly account for the
115 * time spent in this lock function.
116 */
117struct mspin_node {
118 struct mspin_node *next ;
119 int locked; /* 1 if lock acquired */
120};
121#define MLOCK(mutex) ((struct mspin_node **)&((mutex)->spin_mlock))
122
123static noinline
124void mspin_lock(struct mspin_node **lock, struct mspin_node *node)
125{
126 struct mspin_node *prev;
127
128 /* Init node */
129 node->locked = 0;
130 node->next = NULL;
131
132 prev = xchg(lock, node);
133 if (likely(prev == NULL)) {
134 /* Lock acquired */
135 node->locked = 1;
136 return;
137 }
138 ACCESS_ONCE(prev->next) = node;
139 smp_wmb();
140 /* Wait until the lock holder passes the lock down */
141 while (!ACCESS_ONCE(node->locked))
142 arch_mutex_cpu_relax();
143}
144
145static void mspin_unlock(struct mspin_node **lock, struct mspin_node *node)
146{
147 struct mspin_node *next = ACCESS_ONCE(node->next);
148
149 if (likely(!next)) {
150 /*
151 * Release the lock by setting it to NULL
152 */
153 if (cmpxchg(lock, node, NULL) == node)
154 return;
155 /* Wait until the next pointer is set */
156 while (!(next = ACCESS_ONCE(node->next)))
157 arch_mutex_cpu_relax();
158 }
159 ACCESS_ONCE(next->locked) = 1;
160 smp_wmb();
161}
162
163/*
Waiman Long41fcb9f2013-04-17 15:23:11 -0400164 * Mutex spinning code migrated from kernel/sched/core.c
165 */
166
167static inline bool owner_running(struct mutex *lock, struct task_struct *owner)
168{
169 if (lock->owner != owner)
170 return false;
171
172 /*
173 * Ensure we emit the owner->on_cpu, dereference _after_ checking
174 * lock->owner still matches owner, if that fails, owner might
175 * point to free()d memory, if it still matches, the rcu_read_lock()
176 * ensures the memory stays valid.
177 */
178 barrier();
179
180 return owner->on_cpu;
181}
182
183/*
184 * Look out! "owner" is an entirely speculative pointer
185 * access and not reliable.
186 */
187static noinline
188int mutex_spin_on_owner(struct mutex *lock, struct task_struct *owner)
189{
190 rcu_read_lock();
191 while (owner_running(lock, owner)) {
192 if (need_resched())
193 break;
194
195 arch_mutex_cpu_relax();
196 }
197 rcu_read_unlock();
198
199 /*
200 * We break out the loop above on need_resched() and when the
201 * owner changed, which is a sign for heavy contention. Return
202 * success only when lock->owner is NULL.
203 */
204 return lock->owner == NULL;
205}
Waiman Long2bd2c922013-04-17 15:23:13 -0400206
207/*
208 * Initial check for entering the mutex spinning loop
209 */
210static inline int mutex_can_spin_on_owner(struct mutex *lock)
211{
Peter Zijlstra1e40c2e2013-07-19 20:31:01 +0200212 struct task_struct *owner;
Waiman Long2bd2c922013-04-17 15:23:13 -0400213 int retval = 1;
214
215 rcu_read_lock();
Peter Zijlstra1e40c2e2013-07-19 20:31:01 +0200216 owner = ACCESS_ONCE(lock->owner);
217 if (owner)
218 retval = owner->on_cpu;
Waiman Long2bd2c922013-04-17 15:23:13 -0400219 rcu_read_unlock();
220 /*
221 * if lock->owner is not set, the mutex owner may have just acquired
222 * it and not set the owner yet or the mutex has been released.
223 */
224 return retval;
225}
Waiman Long41fcb9f2013-04-17 15:23:11 -0400226#endif
227
Török Edwin7918baa2008-11-24 10:17:42 +0200228static __used noinline void __sched __mutex_unlock_slowpath(atomic_t *lock_count);
Ingo Molnar6053ee32006-01-09 15:59:19 -0800229
Randy Dunlapef5dc122010-09-02 15:48:16 -0700230/**
Ingo Molnar6053ee32006-01-09 15:59:19 -0800231 * mutex_unlock - release the mutex
232 * @lock: the mutex to be released
233 *
234 * Unlock a mutex that has been locked by this task previously.
235 *
236 * This function must not be used in interrupt context. Unlocking
237 * of a not locked mutex is not allowed.
238 *
239 * This function is similar to (but not equivalent to) up().
240 */
Harvey Harrison7ad5b3a2008-02-08 04:19:53 -0800241void __sched mutex_unlock(struct mutex *lock)
Ingo Molnar6053ee32006-01-09 15:59:19 -0800242{
243 /*
244 * The unlocking fastpath is the 0->1 transition from 'locked'
245 * into 'unlocked' state:
Ingo Molnar6053ee32006-01-09 15:59:19 -0800246 */
Peter Zijlstra0d66bf62009-01-12 14:01:47 +0100247#ifndef CONFIG_DEBUG_MUTEXES
248 /*
249 * When debugging is enabled we must not clear the owner before time,
250 * the slow path will always be taken, and that clears the owner field
251 * after verifying that it was indeed current.
252 */
253 mutex_clear_owner(lock);
254#endif
Ingo Molnar6053ee32006-01-09 15:59:19 -0800255 __mutex_fastpath_unlock(&lock->count, __mutex_unlock_slowpath);
256}
257
258EXPORT_SYMBOL(mutex_unlock);
259
Maarten Lankhorst040a0a32013-06-24 10:30:04 +0200260/**
261 * ww_mutex_unlock - release the w/w mutex
262 * @lock: the mutex to be released
263 *
264 * Unlock a mutex that has been locked by this task previously with any of the
265 * ww_mutex_lock* functions (with or without an acquire context). It is
266 * forbidden to release the locks after releasing the acquire context.
267 *
268 * This function must not be used in interrupt context. Unlocking
269 * of a unlocked mutex is not allowed.
270 */
271void __sched ww_mutex_unlock(struct ww_mutex *lock)
272{
273 /*
274 * The unlocking fastpath is the 0->1 transition from 'locked'
275 * into 'unlocked' state:
276 */
277 if (lock->ctx) {
278#ifdef CONFIG_DEBUG_MUTEXES
279 DEBUG_LOCKS_WARN_ON(!lock->ctx->acquired);
280#endif
281 if (lock->ctx->acquired > 0)
282 lock->ctx->acquired--;
283 lock->ctx = NULL;
284 }
285
286#ifndef CONFIG_DEBUG_MUTEXES
287 /*
288 * When debugging is enabled we must not clear the owner before time,
289 * the slow path will always be taken, and that clears the owner field
290 * after verifying that it was indeed current.
291 */
292 mutex_clear_owner(&lock->base);
293#endif
294 __mutex_fastpath_unlock(&lock->base.count, __mutex_unlock_slowpath);
295}
296EXPORT_SYMBOL(ww_mutex_unlock);
297
298static inline int __sched
299__mutex_lock_check_stamp(struct mutex *lock, struct ww_acquire_ctx *ctx)
300{
301 struct ww_mutex *ww = container_of(lock, struct ww_mutex, base);
302 struct ww_acquire_ctx *hold_ctx = ACCESS_ONCE(ww->ctx);
303
304 if (!hold_ctx)
305 return 0;
306
307 if (unlikely(ctx == hold_ctx))
308 return -EALREADY;
309
310 if (ctx->stamp - hold_ctx->stamp <= LONG_MAX &&
311 (ctx->stamp != hold_ctx->stamp || ctx > hold_ctx)) {
312#ifdef CONFIG_DEBUG_MUTEXES
313 DEBUG_LOCKS_WARN_ON(ctx->contending_lock);
314 ctx->contending_lock = ww;
315#endif
316 return -EDEADLK;
317 }
318
319 return 0;
320}
321
322static __always_inline void ww_mutex_lock_acquired(struct ww_mutex *ww,
323 struct ww_acquire_ctx *ww_ctx)
324{
325#ifdef CONFIG_DEBUG_MUTEXES
326 /*
327 * If this WARN_ON triggers, you used ww_mutex_lock to acquire,
328 * but released with a normal mutex_unlock in this call.
329 *
330 * This should never happen, always use ww_mutex_unlock.
331 */
332 DEBUG_LOCKS_WARN_ON(ww->ctx);
333
334 /*
335 * Not quite done after calling ww_acquire_done() ?
336 */
337 DEBUG_LOCKS_WARN_ON(ww_ctx->done_acquire);
338
339 if (ww_ctx->contending_lock) {
340 /*
341 * After -EDEADLK you tried to
342 * acquire a different ww_mutex? Bad!
343 */
344 DEBUG_LOCKS_WARN_ON(ww_ctx->contending_lock != ww);
345
346 /*
347 * You called ww_mutex_lock after receiving -EDEADLK,
348 * but 'forgot' to unlock everything else first?
349 */
350 DEBUG_LOCKS_WARN_ON(ww_ctx->acquired > 0);
351 ww_ctx->contending_lock = NULL;
352 }
353
354 /*
355 * Naughty, using a different class will lead to undefined behavior!
356 */
357 DEBUG_LOCKS_WARN_ON(ww_ctx->ww_class != ww->ww_class);
358#endif
359 ww_ctx->acquired++;
360}
361
362/*
363 * after acquiring lock with fastpath or when we lost out in contested
364 * slowpath, set ctx and wake up any waiters so they can recheck.
365 *
366 * This function is never called when CONFIG_DEBUG_LOCK_ALLOC is set,
367 * as the fastpath and opportunistic spinning are disabled in that case.
368 */
369static __always_inline void
370ww_mutex_set_context_fastpath(struct ww_mutex *lock,
371 struct ww_acquire_ctx *ctx)
372{
373 unsigned long flags;
374 struct mutex_waiter *cur;
375
376 ww_mutex_lock_acquired(lock, ctx);
377
378 lock->ctx = ctx;
379
380 /*
381 * The lock->ctx update should be visible on all cores before
382 * the atomic read is done, otherwise contended waiters might be
383 * missed. The contended waiters will either see ww_ctx == NULL
384 * and keep spinning, or it will acquire wait_lock, add itself
385 * to waiter list and sleep.
386 */
387 smp_mb(); /* ^^^ */
388
389 /*
390 * Check if lock is contended, if not there is nobody to wake up
391 */
392 if (likely(atomic_read(&lock->base.count) == 0))
393 return;
394
395 /*
396 * Uh oh, we raced in fastpath, wake up everyone in this case,
397 * so they can see the new lock->ctx.
398 */
399 spin_lock_mutex(&lock->base.wait_lock, flags);
400 list_for_each_entry(cur, &lock->base.wait_list, list) {
401 debug_mutex_wake_waiter(&lock->base, cur);
402 wake_up_process(cur->task);
403 }
404 spin_unlock_mutex(&lock->base.wait_lock, flags);
405}
406
Ingo Molnar6053ee32006-01-09 15:59:19 -0800407/*
408 * Lock a mutex (possibly interruptible), slowpath:
409 */
Maarten Lankhorst040a0a32013-06-24 10:30:04 +0200410static __always_inline int __sched
Peter Zijlstrae4564f72007-10-11 22:11:12 +0200411__mutex_lock_common(struct mutex *lock, long state, unsigned int subclass,
Maarten Lankhorst040a0a32013-06-24 10:30:04 +0200412 struct lockdep_map *nest_lock, unsigned long ip,
413 struct ww_acquire_ctx *ww_ctx)
Ingo Molnar6053ee32006-01-09 15:59:19 -0800414{
415 struct task_struct *task = current;
416 struct mutex_waiter waiter;
Ingo Molnar1fb00c62006-06-26 00:24:31 -0700417 unsigned long flags;
Maarten Lankhorst040a0a32013-06-24 10:30:04 +0200418 int ret;
Ingo Molnar6053ee32006-01-09 15:59:19 -0800419
Peter Zijlstra41719b02009-01-14 15:36:26 +0100420 preempt_disable();
Peter Zijlstrae4c70a62011-05-24 17:12:03 -0700421 mutex_acquire_nest(&lock->dep_map, subclass, 0, nest_lock, ip);
Frederic Weisbeckerc0226022009-12-02 20:49:16 +0100422
423#ifdef CONFIG_MUTEX_SPIN_ON_OWNER
Peter Zijlstra0d66bf62009-01-12 14:01:47 +0100424 /*
425 * Optimistic spinning.
426 *
427 * We try to spin for acquisition when we find that there are no
428 * pending waiters and the lock owner is currently running on a
429 * (different) CPU.
430 *
431 * The rationale is that if the lock owner is running, it is likely to
432 * release the lock soon.
433 *
434 * Since this needs the lock owner, and this mutex implementation
435 * doesn't track the owner atomically in the lock field, we need to
436 * track it non-atomically.
437 *
438 * We can't do this for DEBUG_MUTEXES because that relies on wait_lock
439 * to serialize everything.
Waiman Long2bd2c922013-04-17 15:23:13 -0400440 *
441 * The mutex spinners are queued up using MCS lock so that only one
442 * spinner can compete for the mutex. However, if mutex spinning isn't
443 * going to happen, there is no point in going through the lock/unlock
444 * overhead.
Peter Zijlstra0d66bf62009-01-12 14:01:47 +0100445 */
Waiman Long2bd2c922013-04-17 15:23:13 -0400446 if (!mutex_can_spin_on_owner(lock))
447 goto slowpath;
Peter Zijlstra0d66bf62009-01-12 14:01:47 +0100448
449 for (;;) {
Peter Zijlstrac6eb3dd2011-04-05 17:23:41 +0200450 struct task_struct *owner;
Waiman Long2bd2c922013-04-17 15:23:13 -0400451 struct mspin_node node;
Peter Zijlstra0d66bf62009-01-12 14:01:47 +0100452
Maarten Lankhorst040a0a32013-06-24 10:30:04 +0200453 if (!__builtin_constant_p(ww_ctx == NULL) && ww_ctx->acquired > 0) {
454 struct ww_mutex *ww;
455
456 ww = container_of(lock, struct ww_mutex, base);
457 /*
458 * If ww->ctx is set the contents are undefined, only
459 * by acquiring wait_lock there is a guarantee that
460 * they are not invalid when reading.
461 *
462 * As such, when deadlock detection needs to be
463 * performed the optimistic spinning cannot be done.
464 */
465 if (ACCESS_ONCE(ww->ctx))
466 break;
467 }
468
Peter Zijlstra0d66bf62009-01-12 14:01:47 +0100469 /*
Peter Zijlstra0d66bf62009-01-12 14:01:47 +0100470 * If there's an owner, wait for it to either
471 * release the lock or go to sleep.
472 */
Waiman Long2bd2c922013-04-17 15:23:13 -0400473 mspin_lock(MLOCK(lock), &node);
Peter Zijlstra0d66bf62009-01-12 14:01:47 +0100474 owner = ACCESS_ONCE(lock->owner);
Waiman Long2bd2c922013-04-17 15:23:13 -0400475 if (owner && !mutex_spin_on_owner(lock, owner)) {
476 mspin_unlock(MLOCK(lock), &node);
Peter Zijlstra0d66bf62009-01-12 14:01:47 +0100477 break;
Waiman Long2bd2c922013-04-17 15:23:13 -0400478 }
Peter Zijlstra0d66bf62009-01-12 14:01:47 +0100479
Waiman Long0dc8c732013-04-17 15:23:12 -0400480 if ((atomic_read(&lock->count) == 1) &&
481 (atomic_cmpxchg(&lock->count, 1, 0) == 1)) {
Chris Masonac6e60e2009-01-14 17:29:31 +0100482 lock_acquired(&lock->dep_map, ip);
Maarten Lankhorst040a0a32013-06-24 10:30:04 +0200483 if (!__builtin_constant_p(ww_ctx == NULL)) {
484 struct ww_mutex *ww;
485 ww = container_of(lock, struct ww_mutex, base);
486
487 ww_mutex_set_context_fastpath(ww, ww_ctx);
488 }
489
Chris Masonac6e60e2009-01-14 17:29:31 +0100490 mutex_set_owner(lock);
Waiman Long2bd2c922013-04-17 15:23:13 -0400491 mspin_unlock(MLOCK(lock), &node);
Chris Masonac6e60e2009-01-14 17:29:31 +0100492 preempt_enable();
493 return 0;
494 }
Waiman Long2bd2c922013-04-17 15:23:13 -0400495 mspin_unlock(MLOCK(lock), &node);
Chris Masonac6e60e2009-01-14 17:29:31 +0100496
Peter Zijlstra0d66bf62009-01-12 14:01:47 +0100497 /*
498 * When there's no owner, we might have preempted between the
499 * owner acquiring the lock and setting the owner field. If
500 * we're an RT task that will live-lock because we won't let
501 * the owner complete.
502 */
503 if (!owner && (need_resched() || rt_task(task)))
504 break;
505
Peter Zijlstra0d66bf62009-01-12 14:01:47 +0100506 /*
507 * The cpu_relax() call is a compiler barrier which forces
508 * everything in this loop to be re-loaded. We don't need
509 * memory barriers as we'll eventually observe the right
510 * values at the cost of a few extra spins.
511 */
Gerald Schaefer335d7af2010-11-22 15:47:36 +0100512 arch_mutex_cpu_relax();
Peter Zijlstra0d66bf62009-01-12 14:01:47 +0100513 }
Waiman Long2bd2c922013-04-17 15:23:13 -0400514slowpath:
Peter Zijlstra0d66bf62009-01-12 14:01:47 +0100515#endif
Ingo Molnar1fb00c62006-06-26 00:24:31 -0700516 spin_lock_mutex(&lock->wait_lock, flags);
Ingo Molnar6053ee32006-01-09 15:59:19 -0800517
Ingo Molnar9a11b49a2006-07-03 00:24:33 -0700518 debug_mutex_lock_common(lock, &waiter);
Roman Zippelc9f4f062007-05-09 02:35:16 -0700519 debug_mutex_add_waiter(lock, &waiter, task_thread_info(task));
Ingo Molnar6053ee32006-01-09 15:59:19 -0800520
521 /* add waiting tasks to the end of the waitqueue (FIFO): */
522 list_add_tail(&waiter.list, &lock->wait_list);
523 waiter.task = task;
524
Waiman Long0dc8c732013-04-17 15:23:12 -0400525 if (MUTEX_SHOW_NO_WAITER(lock) && (atomic_xchg(&lock->count, -1) == 1))
Peter Zijlstra4fe87742007-07-19 01:48:58 -0700526 goto done;
527
Peter Zijlstrae4564f72007-10-11 22:11:12 +0200528 lock_contended(&lock->dep_map, ip);
Peter Zijlstra4fe87742007-07-19 01:48:58 -0700529
Ingo Molnar6053ee32006-01-09 15:59:19 -0800530 for (;;) {
531 /*
532 * Lets try to take the lock again - this is needed even if
533 * we get here for the first time (shortly after failing to
534 * acquire the lock), to make sure that we get a wakeup once
535 * it's unlocked. Later on, if we sleep, this is the
536 * operation that gives us the lock. We xchg it to -1, so
537 * that when we release the lock, we properly wake up the
538 * other waiters:
539 */
Waiman Long0dc8c732013-04-17 15:23:12 -0400540 if (MUTEX_SHOW_NO_WAITER(lock) &&
541 (atomic_xchg(&lock->count, -1) == 1))
Ingo Molnar6053ee32006-01-09 15:59:19 -0800542 break;
543
544 /*
545 * got a signal? (This code gets eliminated in the
546 * TASK_UNINTERRUPTIBLE case.)
547 */
Oleg Nesterov6ad36762008-06-08 21:20:42 +0400548 if (unlikely(signal_pending_state(state, task))) {
Maarten Lankhorst040a0a32013-06-24 10:30:04 +0200549 ret = -EINTR;
550 goto err;
Ingo Molnar6053ee32006-01-09 15:59:19 -0800551 }
Maarten Lankhorst040a0a32013-06-24 10:30:04 +0200552
553 if (!__builtin_constant_p(ww_ctx == NULL) && ww_ctx->acquired > 0) {
554 ret = __mutex_lock_check_stamp(lock, ww_ctx);
555 if (ret)
556 goto err;
557 }
558
Ingo Molnar6053ee32006-01-09 15:59:19 -0800559 __set_task_state(task, state);
560
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300561 /* didn't get the lock, go to sleep: */
Ingo Molnar1fb00c62006-06-26 00:24:31 -0700562 spin_unlock_mutex(&lock->wait_lock, flags);
Thomas Gleixnerbd2f5532011-03-21 12:33:18 +0100563 schedule_preempt_disabled();
Ingo Molnar1fb00c62006-06-26 00:24:31 -0700564 spin_lock_mutex(&lock->wait_lock, flags);
Ingo Molnar6053ee32006-01-09 15:59:19 -0800565 }
566
Peter Zijlstra4fe87742007-07-19 01:48:58 -0700567done:
Peter Zijlstrac7e78cf2008-10-16 23:17:09 +0200568 lock_acquired(&lock->dep_map, ip);
Ingo Molnar6053ee32006-01-09 15:59:19 -0800569 /* got the lock - rejoice! */
Peter Zijlstra0d66bf62009-01-12 14:01:47 +0100570 mutex_remove_waiter(lock, &waiter, current_thread_info());
571 mutex_set_owner(lock);
Ingo Molnar6053ee32006-01-09 15:59:19 -0800572
Maarten Lankhorst040a0a32013-06-24 10:30:04 +0200573 if (!__builtin_constant_p(ww_ctx == NULL)) {
574 struct ww_mutex *ww = container_of(lock,
575 struct ww_mutex,
576 base);
577 struct mutex_waiter *cur;
578
579 /*
580 * This branch gets optimized out for the common case,
581 * and is only important for ww_mutex_lock.
582 */
583
584 ww_mutex_lock_acquired(ww, ww_ctx);
585 ww->ctx = ww_ctx;
586
587 /*
588 * Give any possible sleeping processes the chance to wake up,
589 * so they can recheck if they have to back off.
590 */
591 list_for_each_entry(cur, &lock->wait_list, list) {
592 debug_mutex_wake_waiter(lock, cur);
593 wake_up_process(cur->task);
594 }
595 }
596
Ingo Molnar6053ee32006-01-09 15:59:19 -0800597 /* set it to 0 if there are no waiters left: */
598 if (likely(list_empty(&lock->wait_list)))
599 atomic_set(&lock->count, 0);
600
Ingo Molnar1fb00c62006-06-26 00:24:31 -0700601 spin_unlock_mutex(&lock->wait_lock, flags);
Ingo Molnar6053ee32006-01-09 15:59:19 -0800602
603 debug_mutex_free_waiter(&waiter);
Peter Zijlstra41719b02009-01-14 15:36:26 +0100604 preempt_enable();
Ingo Molnar6053ee32006-01-09 15:59:19 -0800605
Ingo Molnar6053ee32006-01-09 15:59:19 -0800606 return 0;
Maarten Lankhorst040a0a32013-06-24 10:30:04 +0200607
608err:
609 mutex_remove_waiter(lock, &waiter, task_thread_info(task));
610 spin_unlock_mutex(&lock->wait_lock, flags);
611 debug_mutex_free_waiter(&waiter);
612 mutex_release(&lock->dep_map, 1, ip);
613 preempt_enable();
614 return ret;
Ingo Molnar6053ee32006-01-09 15:59:19 -0800615}
616
Ingo Molnaref5d4702006-07-03 00:24:55 -0700617#ifdef CONFIG_DEBUG_LOCK_ALLOC
618void __sched
619mutex_lock_nested(struct mutex *lock, unsigned int subclass)
620{
621 might_sleep();
Maarten Lankhorst040a0a32013-06-24 10:30:04 +0200622 __mutex_lock_common(lock, TASK_UNINTERRUPTIBLE,
623 subclass, NULL, _RET_IP_, NULL);
Ingo Molnaref5d4702006-07-03 00:24:55 -0700624}
625
626EXPORT_SYMBOL_GPL(mutex_lock_nested);
NeilBrownd63a5a72006-12-08 02:36:17 -0800627
Peter Zijlstrae4c70a62011-05-24 17:12:03 -0700628void __sched
629_mutex_lock_nest_lock(struct mutex *lock, struct lockdep_map *nest)
630{
631 might_sleep();
Maarten Lankhorst040a0a32013-06-24 10:30:04 +0200632 __mutex_lock_common(lock, TASK_UNINTERRUPTIBLE,
633 0, nest, _RET_IP_, NULL);
Peter Zijlstrae4c70a62011-05-24 17:12:03 -0700634}
635
636EXPORT_SYMBOL_GPL(_mutex_lock_nest_lock);
637
NeilBrownd63a5a72006-12-08 02:36:17 -0800638int __sched
Liam R. Howlettad776532007-12-06 17:37:59 -0500639mutex_lock_killable_nested(struct mutex *lock, unsigned int subclass)
640{
641 might_sleep();
Maarten Lankhorst040a0a32013-06-24 10:30:04 +0200642 return __mutex_lock_common(lock, TASK_KILLABLE,
643 subclass, NULL, _RET_IP_, NULL);
Liam R. Howlettad776532007-12-06 17:37:59 -0500644}
645EXPORT_SYMBOL_GPL(mutex_lock_killable_nested);
646
647int __sched
NeilBrownd63a5a72006-12-08 02:36:17 -0800648mutex_lock_interruptible_nested(struct mutex *lock, unsigned int subclass)
649{
650 might_sleep();
Peter Zijlstra0d66bf62009-01-12 14:01:47 +0100651 return __mutex_lock_common(lock, TASK_INTERRUPTIBLE,
Maarten Lankhorst040a0a32013-06-24 10:30:04 +0200652 subclass, NULL, _RET_IP_, NULL);
NeilBrownd63a5a72006-12-08 02:36:17 -0800653}
654
655EXPORT_SYMBOL_GPL(mutex_lock_interruptible_nested);
Maarten Lankhorst040a0a32013-06-24 10:30:04 +0200656
Daniel Vetter23010022013-06-20 13:31:17 +0200657static inline int
658ww_mutex_deadlock_injection(struct ww_mutex *lock, struct ww_acquire_ctx *ctx)
659{
660#ifdef CONFIG_DEBUG_WW_MUTEX_SLOWPATH
661 unsigned tmp;
662
663 if (ctx->deadlock_inject_countdown-- == 0) {
664 tmp = ctx->deadlock_inject_interval;
665 if (tmp > UINT_MAX/4)
666 tmp = UINT_MAX;
667 else
668 tmp = tmp*2 + tmp + tmp/2;
669
670 ctx->deadlock_inject_interval = tmp;
671 ctx->deadlock_inject_countdown = tmp;
672 ctx->contending_lock = lock;
673
674 ww_mutex_unlock(lock);
675
676 return -EDEADLK;
677 }
678#endif
679
680 return 0;
681}
Maarten Lankhorst040a0a32013-06-24 10:30:04 +0200682
683int __sched
684__ww_mutex_lock(struct ww_mutex *lock, struct ww_acquire_ctx *ctx)
685{
Daniel Vetter23010022013-06-20 13:31:17 +0200686 int ret;
687
Maarten Lankhorst040a0a32013-06-24 10:30:04 +0200688 might_sleep();
Daniel Vetter23010022013-06-20 13:31:17 +0200689 ret = __mutex_lock_common(&lock->base, TASK_UNINTERRUPTIBLE,
Maarten Lankhorst040a0a32013-06-24 10:30:04 +0200690 0, &ctx->dep_map, _RET_IP_, ctx);
Daniel Vetter23010022013-06-20 13:31:17 +0200691 if (!ret && ctx->acquired > 0)
692 return ww_mutex_deadlock_injection(lock, ctx);
693
694 return ret;
Maarten Lankhorst040a0a32013-06-24 10:30:04 +0200695}
696EXPORT_SYMBOL_GPL(__ww_mutex_lock);
697
698int __sched
699__ww_mutex_lock_interruptible(struct ww_mutex *lock, struct ww_acquire_ctx *ctx)
700{
Daniel Vetter23010022013-06-20 13:31:17 +0200701 int ret;
702
Maarten Lankhorst040a0a32013-06-24 10:30:04 +0200703 might_sleep();
Daniel Vetter23010022013-06-20 13:31:17 +0200704 ret = __mutex_lock_common(&lock->base, TASK_INTERRUPTIBLE,
705 0, &ctx->dep_map, _RET_IP_, ctx);
706
707 if (!ret && ctx->acquired > 0)
708 return ww_mutex_deadlock_injection(lock, ctx);
709
710 return ret;
Maarten Lankhorst040a0a32013-06-24 10:30:04 +0200711}
712EXPORT_SYMBOL_GPL(__ww_mutex_lock_interruptible);
713
Ingo Molnaref5d4702006-07-03 00:24:55 -0700714#endif
715
Ingo Molnar6053ee32006-01-09 15:59:19 -0800716/*
717 * Release the lock, slowpath:
718 */
Harvey Harrison7ad5b3a2008-02-08 04:19:53 -0800719static inline void
Ingo Molnaref5d4702006-07-03 00:24:55 -0700720__mutex_unlock_common_slowpath(atomic_t *lock_count, int nested)
Ingo Molnar6053ee32006-01-09 15:59:19 -0800721{
Ingo Molnar02706642006-01-10 23:15:02 +0100722 struct mutex *lock = container_of(lock_count, struct mutex, count);
Ingo Molnar1fb00c62006-06-26 00:24:31 -0700723 unsigned long flags;
Ingo Molnar6053ee32006-01-09 15:59:19 -0800724
Ingo Molnar1fb00c62006-06-26 00:24:31 -0700725 spin_lock_mutex(&lock->wait_lock, flags);
Ingo Molnaref5d4702006-07-03 00:24:55 -0700726 mutex_release(&lock->dep_map, nested, _RET_IP_);
Ingo Molnar9a11b49a2006-07-03 00:24:33 -0700727 debug_mutex_unlock(lock);
Ingo Molnar6053ee32006-01-09 15:59:19 -0800728
729 /*
730 * some architectures leave the lock unlocked in the fastpath failure
731 * case, others need to leave it locked. In the later case we have to
732 * unlock it here
733 */
734 if (__mutex_slowpath_needs_to_unlock())
735 atomic_set(&lock->count, 1);
736
Ingo Molnar6053ee32006-01-09 15:59:19 -0800737 if (!list_empty(&lock->wait_list)) {
738 /* get the first entry from the wait-list: */
739 struct mutex_waiter *waiter =
740 list_entry(lock->wait_list.next,
741 struct mutex_waiter, list);
742
743 debug_mutex_wake_waiter(lock, waiter);
744
745 wake_up_process(waiter->task);
746 }
747
Ingo Molnar1fb00c62006-06-26 00:24:31 -0700748 spin_unlock_mutex(&lock->wait_lock, flags);
Ingo Molnar6053ee32006-01-09 15:59:19 -0800749}
750
751/*
Ingo Molnar9a11b49a2006-07-03 00:24:33 -0700752 * Release the lock, slowpath:
753 */
Török Edwin7918baa2008-11-24 10:17:42 +0200754static __used noinline void
Ingo Molnar9a11b49a2006-07-03 00:24:33 -0700755__mutex_unlock_slowpath(atomic_t *lock_count)
756{
Ingo Molnaref5d4702006-07-03 00:24:55 -0700757 __mutex_unlock_common_slowpath(lock_count, 1);
Ingo Molnar9a11b49a2006-07-03 00:24:33 -0700758}
759
Peter Zijlstrae4564f72007-10-11 22:11:12 +0200760#ifndef CONFIG_DEBUG_LOCK_ALLOC
Ingo Molnar9a11b49a2006-07-03 00:24:33 -0700761/*
Ingo Molnar6053ee32006-01-09 15:59:19 -0800762 * Here come the less common (and hence less performance-critical) APIs:
763 * mutex_lock_interruptible() and mutex_trylock().
764 */
Harvey Harrison7ad5b3a2008-02-08 04:19:53 -0800765static noinline int __sched
Maarten Lankhorsta41b56e2013-06-20 13:31:05 +0200766__mutex_lock_killable_slowpath(struct mutex *lock);
Liam R. Howlettad776532007-12-06 17:37:59 -0500767
Harvey Harrison7ad5b3a2008-02-08 04:19:53 -0800768static noinline int __sched
Maarten Lankhorsta41b56e2013-06-20 13:31:05 +0200769__mutex_lock_interruptible_slowpath(struct mutex *lock);
Ingo Molnar6053ee32006-01-09 15:59:19 -0800770
Randy Dunlapef5dc122010-09-02 15:48:16 -0700771/**
772 * mutex_lock_interruptible - acquire the mutex, interruptible
Ingo Molnar6053ee32006-01-09 15:59:19 -0800773 * @lock: the mutex to be acquired
774 *
775 * Lock the mutex like mutex_lock(), and return 0 if the mutex has
776 * been acquired or sleep until the mutex becomes available. If a
777 * signal arrives while waiting for the lock then this function
778 * returns -EINTR.
779 *
780 * This function is similar to (but not equivalent to) down_interruptible().
781 */
Harvey Harrison7ad5b3a2008-02-08 04:19:53 -0800782int __sched mutex_lock_interruptible(struct mutex *lock)
Ingo Molnar6053ee32006-01-09 15:59:19 -0800783{
Peter Zijlstra0d66bf62009-01-12 14:01:47 +0100784 int ret;
785
Ingo Molnarc544bdb2006-01-10 22:10:36 +0100786 might_sleep();
Maarten Lankhorsta41b56e2013-06-20 13:31:05 +0200787 ret = __mutex_fastpath_lock_retval(&lock->count);
788 if (likely(!ret)) {
Peter Zijlstra0d66bf62009-01-12 14:01:47 +0100789 mutex_set_owner(lock);
Maarten Lankhorsta41b56e2013-06-20 13:31:05 +0200790 return 0;
791 } else
792 return __mutex_lock_interruptible_slowpath(lock);
Ingo Molnar6053ee32006-01-09 15:59:19 -0800793}
794
795EXPORT_SYMBOL(mutex_lock_interruptible);
796
Harvey Harrison7ad5b3a2008-02-08 04:19:53 -0800797int __sched mutex_lock_killable(struct mutex *lock)
Liam R. Howlettad776532007-12-06 17:37:59 -0500798{
Peter Zijlstra0d66bf62009-01-12 14:01:47 +0100799 int ret;
800
Liam R. Howlettad776532007-12-06 17:37:59 -0500801 might_sleep();
Maarten Lankhorsta41b56e2013-06-20 13:31:05 +0200802 ret = __mutex_fastpath_lock_retval(&lock->count);
803 if (likely(!ret)) {
Peter Zijlstra0d66bf62009-01-12 14:01:47 +0100804 mutex_set_owner(lock);
Maarten Lankhorsta41b56e2013-06-20 13:31:05 +0200805 return 0;
806 } else
807 return __mutex_lock_killable_slowpath(lock);
Liam R. Howlettad776532007-12-06 17:37:59 -0500808}
809EXPORT_SYMBOL(mutex_lock_killable);
810
Török Edwin7918baa2008-11-24 10:17:42 +0200811static __used noinline void __sched
Peter Zijlstrae4564f72007-10-11 22:11:12 +0200812__mutex_lock_slowpath(atomic_t *lock_count)
813{
814 struct mutex *lock = container_of(lock_count, struct mutex, count);
815
Maarten Lankhorst040a0a32013-06-24 10:30:04 +0200816 __mutex_lock_common(lock, TASK_UNINTERRUPTIBLE, 0,
817 NULL, _RET_IP_, NULL);
Peter Zijlstrae4564f72007-10-11 22:11:12 +0200818}
819
Harvey Harrison7ad5b3a2008-02-08 04:19:53 -0800820static noinline int __sched
Maarten Lankhorsta41b56e2013-06-20 13:31:05 +0200821__mutex_lock_killable_slowpath(struct mutex *lock)
Liam R. Howlettad776532007-12-06 17:37:59 -0500822{
Maarten Lankhorst040a0a32013-06-24 10:30:04 +0200823 return __mutex_lock_common(lock, TASK_KILLABLE, 0,
824 NULL, _RET_IP_, NULL);
Liam R. Howlettad776532007-12-06 17:37:59 -0500825}
826
Harvey Harrison7ad5b3a2008-02-08 04:19:53 -0800827static noinline int __sched
Maarten Lankhorsta41b56e2013-06-20 13:31:05 +0200828__mutex_lock_interruptible_slowpath(struct mutex *lock)
Ingo Molnar6053ee32006-01-09 15:59:19 -0800829{
Maarten Lankhorst040a0a32013-06-24 10:30:04 +0200830 return __mutex_lock_common(lock, TASK_INTERRUPTIBLE, 0,
831 NULL, _RET_IP_, NULL);
Ingo Molnar6053ee32006-01-09 15:59:19 -0800832}
Maarten Lankhorst040a0a32013-06-24 10:30:04 +0200833
834static noinline int __sched
835__ww_mutex_lock_slowpath(struct ww_mutex *lock, struct ww_acquire_ctx *ctx)
836{
837 return __mutex_lock_common(&lock->base, TASK_UNINTERRUPTIBLE, 0,
838 NULL, _RET_IP_, ctx);
839}
840
841static noinline int __sched
842__ww_mutex_lock_interruptible_slowpath(struct ww_mutex *lock,
843 struct ww_acquire_ctx *ctx)
844{
845 return __mutex_lock_common(&lock->base, TASK_INTERRUPTIBLE, 0,
846 NULL, _RET_IP_, ctx);
847}
848
Peter Zijlstrae4564f72007-10-11 22:11:12 +0200849#endif
Ingo Molnar6053ee32006-01-09 15:59:19 -0800850
851/*
852 * Spinlock based trylock, we take the spinlock and check whether we
853 * can get the lock:
854 */
855static inline int __mutex_trylock_slowpath(atomic_t *lock_count)
856{
857 struct mutex *lock = container_of(lock_count, struct mutex, count);
Ingo Molnar1fb00c62006-06-26 00:24:31 -0700858 unsigned long flags;
Ingo Molnar6053ee32006-01-09 15:59:19 -0800859 int prev;
860
Ingo Molnar1fb00c62006-06-26 00:24:31 -0700861 spin_lock_mutex(&lock->wait_lock, flags);
Ingo Molnar6053ee32006-01-09 15:59:19 -0800862
863 prev = atomic_xchg(&lock->count, -1);
Ingo Molnaref5d4702006-07-03 00:24:55 -0700864 if (likely(prev == 1)) {
Peter Zijlstra0d66bf62009-01-12 14:01:47 +0100865 mutex_set_owner(lock);
Ingo Molnaref5d4702006-07-03 00:24:55 -0700866 mutex_acquire(&lock->dep_map, 0, 1, _RET_IP_);
867 }
Peter Zijlstra0d66bf62009-01-12 14:01:47 +0100868
Ingo Molnar6053ee32006-01-09 15:59:19 -0800869 /* Set it back to 0 if there are no waiters: */
870 if (likely(list_empty(&lock->wait_list)))
871 atomic_set(&lock->count, 0);
872
Ingo Molnar1fb00c62006-06-26 00:24:31 -0700873 spin_unlock_mutex(&lock->wait_lock, flags);
Ingo Molnar6053ee32006-01-09 15:59:19 -0800874
875 return prev == 1;
876}
877
Randy Dunlapef5dc122010-09-02 15:48:16 -0700878/**
879 * mutex_trylock - try to acquire the mutex, without waiting
Ingo Molnar6053ee32006-01-09 15:59:19 -0800880 * @lock: the mutex to be acquired
881 *
882 * Try to acquire the mutex atomically. Returns 1 if the mutex
883 * has been acquired successfully, and 0 on contention.
884 *
885 * NOTE: this function follows the spin_trylock() convention, so
Randy Dunlapef5dc122010-09-02 15:48:16 -0700886 * it is negated from the down_trylock() return values! Be careful
Ingo Molnar6053ee32006-01-09 15:59:19 -0800887 * about this when converting semaphore users to mutexes.
888 *
889 * This function must not be used in interrupt context. The
890 * mutex must be released by the same task that acquired it.
891 */
Harvey Harrison7ad5b3a2008-02-08 04:19:53 -0800892int __sched mutex_trylock(struct mutex *lock)
Ingo Molnar6053ee32006-01-09 15:59:19 -0800893{
Peter Zijlstra0d66bf62009-01-12 14:01:47 +0100894 int ret;
895
896 ret = __mutex_fastpath_trylock(&lock->count, __mutex_trylock_slowpath);
897 if (ret)
898 mutex_set_owner(lock);
899
900 return ret;
Ingo Molnar6053ee32006-01-09 15:59:19 -0800901}
Ingo Molnar6053ee32006-01-09 15:59:19 -0800902EXPORT_SYMBOL(mutex_trylock);
Andrew Mortona511e3f2009-04-29 15:59:58 -0700903
Maarten Lankhorst040a0a32013-06-24 10:30:04 +0200904#ifndef CONFIG_DEBUG_LOCK_ALLOC
905int __sched
906__ww_mutex_lock(struct ww_mutex *lock, struct ww_acquire_ctx *ctx)
907{
908 int ret;
909
910 might_sleep();
911
912 ret = __mutex_fastpath_lock_retval(&lock->base.count);
913
914 if (likely(!ret)) {
915 ww_mutex_set_context_fastpath(lock, ctx);
916 mutex_set_owner(&lock->base);
917 } else
918 ret = __ww_mutex_lock_slowpath(lock, ctx);
919 return ret;
920}
921EXPORT_SYMBOL(__ww_mutex_lock);
922
923int __sched
924__ww_mutex_lock_interruptible(struct ww_mutex *lock, struct ww_acquire_ctx *ctx)
925{
926 int ret;
927
928 might_sleep();
929
930 ret = __mutex_fastpath_lock_retval(&lock->base.count);
931
932 if (likely(!ret)) {
933 ww_mutex_set_context_fastpath(lock, ctx);
934 mutex_set_owner(&lock->base);
935 } else
936 ret = __ww_mutex_lock_interruptible_slowpath(lock, ctx);
937 return ret;
938}
939EXPORT_SYMBOL(__ww_mutex_lock_interruptible);
940
941#endif
942
Andrew Mortona511e3f2009-04-29 15:59:58 -0700943/**
944 * atomic_dec_and_mutex_lock - return holding mutex if we dec to 0
945 * @cnt: the atomic which we are to dec
946 * @lock: the mutex to return holding if we dec to 0
947 *
948 * return true and hold lock if we dec to 0, return false otherwise
949 */
950int atomic_dec_and_mutex_lock(atomic_t *cnt, struct mutex *lock)
951{
952 /* dec if we can't possibly hit 0 */
953 if (atomic_add_unless(cnt, -1, 1))
954 return 0;
955 /* we might hit 0, so take the lock */
956 mutex_lock(lock);
957 if (!atomic_dec_and_test(cnt)) {
958 /* when we actually did the dec, we didn't hit 0 */
959 mutex_unlock(lock);
960 return 0;
961 }
962 /* we hit 0, and we hold the lock */
963 return 1;
964}
965EXPORT_SYMBOL(atomic_dec_and_mutex_lock);