blob: cfe48419b7d06cb8f7116f600941747d264c8ac2 [file] [log] [blame]
Ingo Molnar6053ee32006-01-09 15:59:19 -08001/*
Peter Zijlstra67a6de42013-11-08 08:26:39 +01002 * kernel/locking/mutex.c
Ingo Molnar6053ee32006-01-09 15:59:19 -08003 *
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 *
Davidlohr Bueso214e0ae2014-07-30 13:41:55 -070018 * Also see Documentation/locking/mutex-design.txt.
Ingo Molnar6053ee32006-01-09 15:59:19 -080019 */
20#include <linux/mutex.h>
Maarten Lankhorst1b375dc2013-07-05 09:29:32 +020021#include <linux/ww_mutex.h>
Ingo Molnar174cd4b2017-02-02 19:15:33 +010022#include <linux/sched/signal.h>
Clark Williams8bd75c72013-02-07 09:47:07 -060023#include <linux/sched/rt.h>
Ingo Molnar84f001e2017-02-01 16:36:40 +010024#include <linux/sched/wake_q.h>
Ingo Molnarb17b0152017-02-08 18:51:35 +010025#include <linux/sched/debug.h>
Paul Gortmaker9984de12011-05-23 14:51:41 -040026#include <linux/export.h>
Ingo Molnar6053ee32006-01-09 15:59:19 -080027#include <linux/spinlock.h>
28#include <linux/interrupt.h>
Ingo Molnar9a11b49a2006-07-03 00:24:33 -070029#include <linux/debug_locks.h>
Davidlohr Bueso7a215f82015-01-30 01:14:25 -080030#include <linux/osq_lock.h>
Ingo Molnar6053ee32006-01-09 15:59:19 -080031
Ingo Molnar6053ee32006-01-09 15:59:19 -080032#ifdef CONFIG_DEBUG_MUTEXES
33# include "mutex-debug.h"
Ingo Molnar6053ee32006-01-09 15:59:19 -080034#else
35# include "mutex.h"
Ingo Molnar6053ee32006-01-09 15:59:19 -080036#endif
37
Ingo Molnaref5d4702006-07-03 00:24:55 -070038void
39__mutex_init(struct mutex *lock, const char *name, struct lock_class_key *key)
Ingo Molnar6053ee32006-01-09 15:59:19 -080040{
Peter Zijlstra3ca0ff52016-08-23 13:36:04 +020041 atomic_long_set(&lock->owner, 0);
Ingo Molnar6053ee32006-01-09 15:59:19 -080042 spin_lock_init(&lock->wait_lock);
43 INIT_LIST_HEAD(&lock->wait_list);
Waiman Long2bd2c922013-04-17 15:23:13 -040044#ifdef CONFIG_MUTEX_SPIN_ON_OWNER
Jason Low4d9d9512014-07-14 10:27:50 -070045 osq_lock_init(&lock->osq);
Waiman Long2bd2c922013-04-17 15:23:13 -040046#endif
Ingo Molnar6053ee32006-01-09 15:59:19 -080047
Ingo Molnaref5d4702006-07-03 00:24:55 -070048 debug_mutex_init(lock, name, key);
Ingo Molnar6053ee32006-01-09 15:59:19 -080049}
Ingo Molnar6053ee32006-01-09 15:59:19 -080050EXPORT_SYMBOL(__mutex_init);
51
Peter Zijlstra3ca0ff52016-08-23 13:36:04 +020052/*
53 * @owner: contains: 'struct task_struct *' to the current lock owner,
54 * NULL means not owned. Since task_struct pointers are aligned at
Peter Zijlstrae2747952017-01-11 14:17:48 +010055 * at least L1_CACHE_BYTES, we have low bits to store extra state.
Peter Zijlstra3ca0ff52016-08-23 13:36:04 +020056 *
57 * Bit0 indicates a non-empty waiter list; unlock must issue a wakeup.
Peter Zijlstra9d659ae2016-08-23 14:40:16 +020058 * Bit1 indicates unlock needs to hand the lock to the top-waiter
Peter Zijlstrae2747952017-01-11 14:17:48 +010059 * Bit2 indicates handoff has been done and we're waiting for pickup.
Peter Zijlstra3ca0ff52016-08-23 13:36:04 +020060 */
61#define MUTEX_FLAG_WAITERS 0x01
Peter Zijlstra9d659ae2016-08-23 14:40:16 +020062#define MUTEX_FLAG_HANDOFF 0x02
Peter Zijlstrae2747952017-01-11 14:17:48 +010063#define MUTEX_FLAG_PICKUP 0x04
Peter Zijlstra3ca0ff52016-08-23 13:36:04 +020064
Peter Zijlstrae2747952017-01-11 14:17:48 +010065#define MUTEX_FLAGS 0x07
Peter Zijlstra3ca0ff52016-08-23 13:36:04 +020066
67static inline struct task_struct *__owner_task(unsigned long owner)
68{
69 return (struct task_struct *)(owner & ~MUTEX_FLAGS);
70}
71
72static inline unsigned long __owner_flags(unsigned long owner)
73{
74 return owner & MUTEX_FLAGS;
75}
76
77/*
Peter Zijlstrae2747952017-01-11 14:17:48 +010078 * Trylock variant that retuns the owning task on failure.
Peter Zijlstra3ca0ff52016-08-23 13:36:04 +020079 */
Peter Zijlstrae2747952017-01-11 14:17:48 +010080static inline struct task_struct *__mutex_trylock_or_owner(struct mutex *lock)
Peter Zijlstra3ca0ff52016-08-23 13:36:04 +020081{
82 unsigned long owner, curr = (unsigned long)current;
83
84 owner = atomic_long_read(&lock->owner);
85 for (;;) { /* must loop, can race against a flag */
Peter Zijlstra9d659ae2016-08-23 14:40:16 +020086 unsigned long old, flags = __owner_flags(owner);
Peter Zijlstrae2747952017-01-11 14:17:48 +010087 unsigned long task = owner & ~MUTEX_FLAGS;
Peter Zijlstra3ca0ff52016-08-23 13:36:04 +020088
Peter Zijlstrae2747952017-01-11 14:17:48 +010089 if (task) {
90 if (likely(task != curr))
91 break;
Peter Zijlstra9d659ae2016-08-23 14:40:16 +020092
Peter Zijlstrae2747952017-01-11 14:17:48 +010093 if (likely(!(flags & MUTEX_FLAG_PICKUP)))
94 break;
95
96 flags &= ~MUTEX_FLAG_PICKUP;
97 } else {
98#ifdef CONFIG_DEBUG_MUTEXES
99 DEBUG_LOCKS_WARN_ON(flags & MUTEX_FLAG_PICKUP);
100#endif
Peter Zijlstra9d659ae2016-08-23 14:40:16 +0200101 }
Peter Zijlstra3ca0ff52016-08-23 13:36:04 +0200102
Peter Zijlstra9d659ae2016-08-23 14:40:16 +0200103 /*
104 * We set the HANDOFF bit, we must make sure it doesn't live
105 * past the point where we acquire it. This would be possible
106 * if we (accidentally) set the bit on an unlocked mutex.
107 */
Peter Zijlstrae2747952017-01-11 14:17:48 +0100108 flags &= ~MUTEX_FLAG_HANDOFF;
Peter Zijlstra9d659ae2016-08-23 14:40:16 +0200109
110 old = atomic_long_cmpxchg_acquire(&lock->owner, owner, curr | flags);
Peter Zijlstra3ca0ff52016-08-23 13:36:04 +0200111 if (old == owner)
Peter Zijlstrae2747952017-01-11 14:17:48 +0100112 return NULL;
Peter Zijlstra3ca0ff52016-08-23 13:36:04 +0200113
114 owner = old;
115 }
Peter Zijlstrae2747952017-01-11 14:17:48 +0100116
117 return __owner_task(owner);
118}
119
120/*
121 * Actual trylock that will work on any unlocked state.
122 */
123static inline bool __mutex_trylock(struct mutex *lock)
124{
125 return !__mutex_trylock_or_owner(lock);
Peter Zijlstra3ca0ff52016-08-23 13:36:04 +0200126}
127
128#ifndef CONFIG_DEBUG_LOCK_ALLOC
129/*
130 * Lockdep annotations are contained to the slow paths for simplicity.
131 * There is nothing that would stop spreading the lockdep annotations outwards
132 * except more code.
133 */
134
135/*
136 * Optimistic trylock that only works in the uncontended case. Make sure to
137 * follow with a __mutex_trylock() before failing.
138 */
139static __always_inline bool __mutex_trylock_fast(struct mutex *lock)
140{
141 unsigned long curr = (unsigned long)current;
Peter Zijlstrac427f692018-04-05 11:05:35 +0200142 unsigned long zero = 0UL;
Peter Zijlstra3ca0ff52016-08-23 13:36:04 +0200143
Peter Zijlstrac427f692018-04-05 11:05:35 +0200144 if (atomic_long_try_cmpxchg_acquire(&lock->owner, &zero, curr))
Peter Zijlstra3ca0ff52016-08-23 13:36:04 +0200145 return true;
146
147 return false;
148}
149
150static __always_inline bool __mutex_unlock_fast(struct mutex *lock)
151{
152 unsigned long curr = (unsigned long)current;
153
154 if (atomic_long_cmpxchg_release(&lock->owner, curr, 0UL) == curr)
155 return true;
156
157 return false;
158}
159#endif
160
161static inline void __mutex_set_flag(struct mutex *lock, unsigned long flag)
162{
163 atomic_long_or(flag, &lock->owner);
164}
165
166static inline void __mutex_clear_flag(struct mutex *lock, unsigned long flag)
167{
168 atomic_long_andnot(flag, &lock->owner);
169}
170
Peter Zijlstra9d659ae2016-08-23 14:40:16 +0200171static inline bool __mutex_waiter_is_first(struct mutex *lock, struct mutex_waiter *waiter)
172{
173 return list_first_entry(&lock->wait_list, struct mutex_waiter, list) == waiter;
174}
175
176/*
177 * Give up ownership to a specific task, when @task = NULL, this is equivalent
Peter Zijlstrae2747952017-01-11 14:17:48 +0100178 * to a regular unlock. Sets PICKUP on a handoff, clears HANDOF, preserves
179 * WAITERS. Provides RELEASE semantics like a regular unlock, the
180 * __mutex_trylock() provides a matching ACQUIRE semantics for the handoff.
Peter Zijlstra9d659ae2016-08-23 14:40:16 +0200181 */
182static void __mutex_handoff(struct mutex *lock, struct task_struct *task)
183{
184 unsigned long owner = atomic_long_read(&lock->owner);
185
186 for (;;) {
187 unsigned long old, new;
188
189#ifdef CONFIG_DEBUG_MUTEXES
190 DEBUG_LOCKS_WARN_ON(__owner_task(owner) != current);
Peter Zijlstrae2747952017-01-11 14:17:48 +0100191 DEBUG_LOCKS_WARN_ON(owner & MUTEX_FLAG_PICKUP);
Peter Zijlstra9d659ae2016-08-23 14:40:16 +0200192#endif
193
194 new = (owner & MUTEX_FLAG_WAITERS);
195 new |= (unsigned long)task;
Peter Zijlstrae2747952017-01-11 14:17:48 +0100196 if (task)
197 new |= MUTEX_FLAG_PICKUP;
Peter Zijlstra9d659ae2016-08-23 14:40:16 +0200198
199 old = atomic_long_cmpxchg_release(&lock->owner, owner, new);
200 if (old == owner)
201 break;
202
203 owner = old;
204 }
205}
206
Peter Zijlstrae4564f72007-10-11 22:11:12 +0200207#ifndef CONFIG_DEBUG_LOCK_ALLOC
Ingo Molnar6053ee32006-01-09 15:59:19 -0800208/*
209 * We split the mutex lock/unlock logic into separate fastpath and
210 * slowpath functions, to reduce the register pressure on the fastpath.
211 * We also put the fastpath first in the kernel image, to make sure the
212 * branch is predicted by the CPU as default-untaken.
213 */
Peter Zijlstra3ca0ff52016-08-23 13:36:04 +0200214static void __sched __mutex_lock_slowpath(struct mutex *lock);
Ingo Molnar6053ee32006-01-09 15:59:19 -0800215
Randy Dunlapef5dc122010-09-02 15:48:16 -0700216/**
Ingo Molnar6053ee32006-01-09 15:59:19 -0800217 * mutex_lock - acquire the mutex
218 * @lock: the mutex to be acquired
219 *
220 * Lock the mutex exclusively for this task. If the mutex is not
221 * available right now, it will sleep until it can get it.
222 *
223 * The mutex must later on be released by the same task that
224 * acquired it. Recursive locking is not allowed. The task
225 * may not exit without first unlocking the mutex. Also, kernel
Sharon Dvir139b6fd2015-02-01 23:47:32 +0200226 * memory where the mutex resides must not be freed with
Ingo Molnar6053ee32006-01-09 15:59:19 -0800227 * the mutex still locked. The mutex must first be initialized
228 * (or statically defined) before it can be locked. memset()-ing
229 * the mutex to 0 is not allowed.
230 *
Mauro Carvalho Chehab7b4ff1a2017-05-11 10:17:45 -0300231 * (The CONFIG_DEBUG_MUTEXES .config option turns on debugging
232 * checks that will enforce the restrictions and will also do
233 * deadlock debugging)
Ingo Molnar6053ee32006-01-09 15:59:19 -0800234 *
235 * This function is similar to (but not equivalent to) down().
236 */
H. Peter Anvinb09d2502009-04-01 17:21:56 -0700237void __sched mutex_lock(struct mutex *lock)
Ingo Molnar6053ee32006-01-09 15:59:19 -0800238{
Ingo Molnarc544bdb2006-01-10 22:10:36 +0100239 might_sleep();
Ingo Molnar6053ee32006-01-09 15:59:19 -0800240
Peter Zijlstra3ca0ff52016-08-23 13:36:04 +0200241 if (!__mutex_trylock_fast(lock))
242 __mutex_lock_slowpath(lock);
243}
Ingo Molnar6053ee32006-01-09 15:59:19 -0800244EXPORT_SYMBOL(mutex_lock);
Peter Zijlstrae4564f72007-10-11 22:11:12 +0200245#endif
Ingo Molnar6053ee32006-01-09 15:59:19 -0800246
Peter Ziljstra55f036c2018-06-15 10:07:12 +0200247/*
248 * Wait-Die:
249 * The newer transactions are killed when:
250 * It (the new transaction) makes a request for a lock being held
251 * by an older transaction.
252 */
253
254/*
255 * Associate the ww_mutex @ww with the context @ww_ctx under which we acquired
256 * it.
257 */
Peter Zijlstra427b1822016-12-23 10:36:00 +0100258static __always_inline void
259ww_mutex_lock_acquired(struct ww_mutex *ww, struct ww_acquire_ctx *ww_ctx)
Davidlohr Bueso76916512014-07-30 13:41:53 -0700260{
261#ifdef CONFIG_DEBUG_MUTEXES
262 /*
263 * If this WARN_ON triggers, you used ww_mutex_lock to acquire,
264 * but released with a normal mutex_unlock in this call.
265 *
266 * This should never happen, always use ww_mutex_unlock.
267 */
268 DEBUG_LOCKS_WARN_ON(ww->ctx);
269
270 /*
271 * Not quite done after calling ww_acquire_done() ?
272 */
273 DEBUG_LOCKS_WARN_ON(ww_ctx->done_acquire);
274
275 if (ww_ctx->contending_lock) {
276 /*
277 * After -EDEADLK you tried to
278 * acquire a different ww_mutex? Bad!
279 */
280 DEBUG_LOCKS_WARN_ON(ww_ctx->contending_lock != ww);
281
282 /*
283 * You called ww_mutex_lock after receiving -EDEADLK,
284 * but 'forgot' to unlock everything else first?
285 */
286 DEBUG_LOCKS_WARN_ON(ww_ctx->acquired > 0);
287 ww_ctx->contending_lock = NULL;
288 }
289
290 /*
291 * Naughty, using a different class will lead to undefined behavior!
292 */
293 DEBUG_LOCKS_WARN_ON(ww_ctx->ww_class != ww->ww_class);
294#endif
295 ww_ctx->acquired++;
Peter Ziljstra55f036c2018-06-15 10:07:12 +0200296 ww->ctx = ww_ctx;
Nicolai Hähnle3822da32016-12-21 19:46:31 +0100297}
298
Davidlohr Bueso76916512014-07-30 13:41:53 -0700299/*
Peter Ziljstra55f036c2018-06-15 10:07:12 +0200300 * Determine if context @a is 'after' context @b. IOW, @a is a younger
301 * transaction than @b and depending on algorithm either needs to wait for
302 * @b or die.
303 */
304static inline bool __sched
305__ww_ctx_stamp_after(struct ww_acquire_ctx *a, struct ww_acquire_ctx *b)
306{
307
308 return (signed long)(a->stamp - b->stamp) > 0;
309}
310
311/*
312 * Wait-Die; wake a younger waiter context (when locks held) such that it can
313 * die.
Nicolai Hähnle659cf9f2016-12-21 19:46:36 +0100314 *
Peter Ziljstra55f036c2018-06-15 10:07:12 +0200315 * Among waiters with context, only the first one can have other locks acquired
316 * already (ctx->acquired > 0), because __ww_mutex_add_waiter() and
317 * __ww_mutex_check_kill() wake any but the earliest context.
318 */
319static bool __sched
320__ww_mutex_die(struct mutex *lock, struct mutex_waiter *waiter,
321 struct ww_acquire_ctx *ww_ctx)
322{
323 if (waiter->ww_ctx->acquired > 0 &&
324 __ww_ctx_stamp_after(waiter->ww_ctx, ww_ctx)) {
325 debug_mutex_wake_waiter(lock, waiter);
326 wake_up_process(waiter->task);
327 }
328
329 return true;
330}
331
332/*
333 * We just acquired @lock under @ww_ctx, if there are later contexts waiting
334 * behind us on the wait-list, check if they need to die.
335 *
336 * See __ww_mutex_add_waiter() for the list-order construction; basically the
337 * list is ordered by stamp, smallest (oldest) first.
Nicolai Hähnle659cf9f2016-12-21 19:46:36 +0100338 *
339 * The current task must not be on the wait list.
340 */
341static void __sched
Peter Ziljstra55f036c2018-06-15 10:07:12 +0200342__ww_mutex_check_waiters(struct mutex *lock, struct ww_acquire_ctx *ww_ctx)
Nicolai Hähnle659cf9f2016-12-21 19:46:36 +0100343{
344 struct mutex_waiter *cur;
345
346 lockdep_assert_held(&lock->wait_lock);
347
348 list_for_each_entry(cur, &lock->wait_list, list) {
349 if (!cur->ww_ctx)
350 continue;
351
Peter Ziljstra55f036c2018-06-15 10:07:12 +0200352 if (__ww_mutex_die(lock, cur, ww_ctx))
353 break;
Nicolai Hähnle659cf9f2016-12-21 19:46:36 +0100354 }
355}
356
Davidlohr Bueso76916512014-07-30 13:41:53 -0700357/*
Peter Ziljstra55f036c2018-06-15 10:07:12 +0200358 * After acquiring lock with fastpath, where we do not hold wait_lock, set ctx
359 * and wake up any waiters so they can recheck.
Davidlohr Bueso76916512014-07-30 13:41:53 -0700360 */
361static __always_inline void
Peter Zijlstra427b1822016-12-23 10:36:00 +0100362ww_mutex_set_context_fastpath(struct ww_mutex *lock, struct ww_acquire_ctx *ctx)
Davidlohr Bueso76916512014-07-30 13:41:53 -0700363{
Davidlohr Bueso76916512014-07-30 13:41:53 -0700364 ww_mutex_lock_acquired(lock, ctx);
365
Davidlohr Bueso76916512014-07-30 13:41:53 -0700366 /*
367 * The lock->ctx update should be visible on all cores before
Peter Ziljstra55f036c2018-06-15 10:07:12 +0200368 * the WAITERS check is done, otherwise contended waiters might be
Davidlohr Bueso76916512014-07-30 13:41:53 -0700369 * missed. The contended waiters will either see ww_ctx == NULL
370 * and keep spinning, or it will acquire wait_lock, add itself
371 * to waiter list and sleep.
372 */
373 smp_mb(); /* ^^^ */
374
375 /*
376 * Check if lock is contended, if not there is nobody to wake up
377 */
Peter Zijlstra3ca0ff52016-08-23 13:36:04 +0200378 if (likely(!(atomic_long_read(&lock->base.owner) & MUTEX_FLAG_WAITERS)))
Davidlohr Bueso76916512014-07-30 13:41:53 -0700379 return;
380
381 /*
Peter Ziljstra55f036c2018-06-15 10:07:12 +0200382 * Uh oh, we raced in fastpath, check if any of the waiters need to
383 * die.
Davidlohr Bueso76916512014-07-30 13:41:53 -0700384 */
Peter Zijlstrab9c16a02017-01-17 16:06:09 +0100385 spin_lock(&lock->base.wait_lock);
Peter Ziljstra55f036c2018-06-15 10:07:12 +0200386 __ww_mutex_check_waiters(&lock->base, ctx);
Peter Zijlstrab9c16a02017-01-17 16:06:09 +0100387 spin_unlock(&lock->base.wait_lock);
Davidlohr Bueso76916512014-07-30 13:41:53 -0700388}
389
Waiman Long41fcb9f2013-04-17 15:23:11 -0400390#ifdef CONFIG_MUTEX_SPIN_ON_OWNER
Nicolai Hähnlec516df92016-12-21 19:46:38 +0100391
392static inline
393bool ww_mutex_spin_on_owner(struct mutex *lock, struct ww_acquire_ctx *ww_ctx,
394 struct mutex_waiter *waiter)
395{
396 struct ww_mutex *ww;
397
398 ww = container_of(lock, struct ww_mutex, base);
399
400 /*
401 * If ww->ctx is set the contents are undefined, only
402 * by acquiring wait_lock there is a guarantee that
403 * they are not invalid when reading.
404 *
405 * As such, when deadlock detection needs to be
406 * performed the optimistic spinning cannot be done.
407 *
408 * Check this in every inner iteration because we may
409 * be racing against another thread's ww_mutex_lock.
410 */
411 if (ww_ctx->acquired > 0 && READ_ONCE(ww->ctx))
412 return false;
413
414 /*
415 * If we aren't on the wait list yet, cancel the spin
416 * if there are waiters. We want to avoid stealing the
417 * lock from a waiter with an earlier stamp, since the
418 * other thread may already own a lock that we also
419 * need.
420 */
421 if (!waiter && (atomic_long_read(&lock->owner) & MUTEX_FLAG_WAITERS))
422 return false;
423
424 /*
425 * Similarly, stop spinning if we are no longer the
426 * first waiter.
427 */
428 if (waiter && !__mutex_waiter_is_first(lock, waiter))
429 return false;
430
431 return true;
432}
433
Waiman Long41fcb9f2013-04-17 15:23:11 -0400434/*
Nicolai Hähnle25f13b42016-12-21 19:46:37 +0100435 * Look out! "owner" is an entirely speculative pointer access and not
436 * reliable.
437 *
438 * "noinline" so that this function shows up on perf profiles.
Waiman Long41fcb9f2013-04-17 15:23:11 -0400439 */
440static noinline
Nicolai Hähnle25f13b42016-12-21 19:46:37 +0100441bool mutex_spin_on_owner(struct mutex *lock, struct task_struct *owner,
Nicolai Hähnlec516df92016-12-21 19:46:38 +0100442 struct ww_acquire_ctx *ww_ctx, struct mutex_waiter *waiter)
Waiman Long41fcb9f2013-04-17 15:23:11 -0400443{
Jason Low01ac33c2015-04-08 12:39:19 -0700444 bool ret = true;
Jason Lowbe1f7bf2015-02-02 13:59:27 -0800445
Waiman Long41fcb9f2013-04-17 15:23:11 -0400446 rcu_read_lock();
Peter Zijlstra3ca0ff52016-08-23 13:36:04 +0200447 while (__mutex_owner(lock) == owner) {
Jason Lowbe1f7bf2015-02-02 13:59:27 -0800448 /*
449 * Ensure we emit the owner->on_cpu, dereference _after_
Jason Low01ac33c2015-04-08 12:39:19 -0700450 * checking lock->owner still matches owner. If that fails,
451 * owner might point to freed memory. If it still matches,
Jason Lowbe1f7bf2015-02-02 13:59:27 -0800452 * the rcu_read_lock() ensures the memory stays valid.
453 */
454 barrier();
455
Pan Xinhui05ffc952016-11-02 05:08:30 -0400456 /*
457 * Use vcpu_is_preempted to detect lock holder preemption issue.
458 */
459 if (!owner->on_cpu || need_resched() ||
460 vcpu_is_preempted(task_cpu(owner))) {
Jason Lowbe1f7bf2015-02-02 13:59:27 -0800461 ret = false;
462 break;
463 }
Waiman Long41fcb9f2013-04-17 15:23:11 -0400464
Nicolai Hähnlec516df92016-12-21 19:46:38 +0100465 if (ww_ctx && !ww_mutex_spin_on_owner(lock, ww_ctx, waiter)) {
466 ret = false;
467 break;
Nicolai Hähnle25f13b42016-12-21 19:46:37 +0100468 }
469
Christian Borntraegerf2f09a42016-10-25 11:03:14 +0200470 cpu_relax();
Waiman Long41fcb9f2013-04-17 15:23:11 -0400471 }
472 rcu_read_unlock();
473
Jason Lowbe1f7bf2015-02-02 13:59:27 -0800474 return ret;
Waiman Long41fcb9f2013-04-17 15:23:11 -0400475}
Waiman Long2bd2c922013-04-17 15:23:13 -0400476
477/*
478 * Initial check for entering the mutex spinning loop
479 */
480static inline int mutex_can_spin_on_owner(struct mutex *lock)
481{
Peter Zijlstra1e40c2e2013-07-19 20:31:01 +0200482 struct task_struct *owner;
Waiman Long2bd2c922013-04-17 15:23:13 -0400483 int retval = 1;
484
Jason Low46af29e2014-01-28 11:13:12 -0800485 if (need_resched())
486 return 0;
487
Waiman Long2bd2c922013-04-17 15:23:13 -0400488 rcu_read_lock();
Peter Zijlstra3ca0ff52016-08-23 13:36:04 +0200489 owner = __mutex_owner(lock);
Pan Xinhui05ffc952016-11-02 05:08:30 -0400490
491 /*
492 * As lock holder preemption issue, we both skip spinning if task is not
493 * on cpu or its cpu is preempted
494 */
Peter Zijlstra1e40c2e2013-07-19 20:31:01 +0200495 if (owner)
Pan Xinhui05ffc952016-11-02 05:08:30 -0400496 retval = owner->on_cpu && !vcpu_is_preempted(task_cpu(owner));
Waiman Long2bd2c922013-04-17 15:23:13 -0400497 rcu_read_unlock();
Peter Zijlstra3ca0ff52016-08-23 13:36:04 +0200498
Waiman Long2bd2c922013-04-17 15:23:13 -0400499 /*
Peter Zijlstra3ca0ff52016-08-23 13:36:04 +0200500 * If lock->owner is not set, the mutex has been released. Return true
501 * such that we'll trylock in the spin path, which is a faster option
502 * than the blocking slow path.
Waiman Long2bd2c922013-04-17 15:23:13 -0400503 */
504 return retval;
505}
Davidlohr Bueso76916512014-07-30 13:41:53 -0700506
507/*
Davidlohr Bueso76916512014-07-30 13:41:53 -0700508 * Optimistic spinning.
509 *
510 * We try to spin for acquisition when we find that the lock owner
511 * is currently running on a (different) CPU and while we don't
512 * need to reschedule. The rationale is that if the lock owner is
513 * running, it is likely to release the lock soon.
514 *
Davidlohr Bueso76916512014-07-30 13:41:53 -0700515 * The mutex spinners are queued up using MCS lock so that only one
516 * spinner can compete for the mutex. However, if mutex spinning isn't
517 * going to happen, there is no point in going through the lock/unlock
518 * overhead.
519 *
520 * Returns true when the lock was taken, otherwise false, indicating
521 * that we need to jump to the slowpath and sleep.
Waiman Longb341afb2016-08-26 19:35:09 -0400522 *
523 * The waiter flag is set to true if the spinner is a waiter in the wait
524 * queue. The waiter-spinner will spin on the lock directly and concurrently
525 * with the spinner at the head of the OSQ, if present, until the owner is
526 * changed to itself.
Davidlohr Bueso76916512014-07-30 13:41:53 -0700527 */
Peter Zijlstra427b1822016-12-23 10:36:00 +0100528static __always_inline bool
529mutex_optimistic_spin(struct mutex *lock, struct ww_acquire_ctx *ww_ctx,
Nicolai Hähnlec516df92016-12-21 19:46:38 +0100530 const bool use_ww_ctx, struct mutex_waiter *waiter)
Davidlohr Bueso76916512014-07-30 13:41:53 -0700531{
Waiman Longb341afb2016-08-26 19:35:09 -0400532 if (!waiter) {
533 /*
534 * The purpose of the mutex_can_spin_on_owner() function is
535 * to eliminate the overhead of osq_lock() and osq_unlock()
536 * in case spinning isn't possible. As a waiter-spinner
537 * is not going to take OSQ lock anyway, there is no need
538 * to call mutex_can_spin_on_owner().
539 */
540 if (!mutex_can_spin_on_owner(lock))
541 goto fail;
Davidlohr Bueso76916512014-07-30 13:41:53 -0700542
Waiman Longb341afb2016-08-26 19:35:09 -0400543 /*
544 * In order to avoid a stampede of mutex spinners trying to
545 * acquire the mutex all at once, the spinners need to take a
546 * MCS (queued) lock first before spinning on the owner field.
547 */
548 if (!osq_lock(&lock->osq))
549 goto fail;
550 }
Davidlohr Bueso76916512014-07-30 13:41:53 -0700551
Waiman Longb341afb2016-08-26 19:35:09 -0400552 for (;;) {
Davidlohr Bueso76916512014-07-30 13:41:53 -0700553 struct task_struct *owner;
554
Peter Zijlstrae2747952017-01-11 14:17:48 +0100555 /* Try to acquire the mutex... */
556 owner = __mutex_trylock_or_owner(lock);
557 if (!owner)
558 break;
Davidlohr Bueso76916512014-07-30 13:41:53 -0700559
560 /*
Peter Zijlstrae2747952017-01-11 14:17:48 +0100561 * There's an owner, wait for it to either
Davidlohr Bueso76916512014-07-30 13:41:53 -0700562 * release the lock or go to sleep.
563 */
Nicolai Hähnlec516df92016-12-21 19:46:38 +0100564 if (!mutex_spin_on_owner(lock, owner, ww_ctx, waiter))
Peter Zijlstrae2747952017-01-11 14:17:48 +0100565 goto fail_unlock;
Davidlohr Bueso76916512014-07-30 13:41:53 -0700566
567 /*
Davidlohr Bueso76916512014-07-30 13:41:53 -0700568 * The cpu_relax() call is a compiler barrier which forces
569 * everything in this loop to be re-loaded. We don't need
570 * memory barriers as we'll eventually observe the right
571 * values at the cost of a few extra spins.
572 */
Christian Borntraegerf2f09a42016-10-25 11:03:14 +0200573 cpu_relax();
Davidlohr Bueso76916512014-07-30 13:41:53 -0700574 }
575
Waiman Longb341afb2016-08-26 19:35:09 -0400576 if (!waiter)
577 osq_unlock(&lock->osq);
578
579 return true;
580
581
582fail_unlock:
583 if (!waiter)
584 osq_unlock(&lock->osq);
585
586fail:
Davidlohr Bueso76916512014-07-30 13:41:53 -0700587 /*
588 * If we fell out of the spin path because of need_resched(),
589 * reschedule now, before we try-lock the mutex. This avoids getting
590 * scheduled out right after we obtained the mutex.
591 */
Peter Zijlstra6f942a12014-09-24 10:18:46 +0200592 if (need_resched()) {
593 /*
594 * We _should_ have TASK_RUNNING here, but just in case
595 * we do not, make it so, otherwise we might get stuck.
596 */
597 __set_current_state(TASK_RUNNING);
Davidlohr Bueso76916512014-07-30 13:41:53 -0700598 schedule_preempt_disabled();
Peter Zijlstra6f942a12014-09-24 10:18:46 +0200599 }
Davidlohr Bueso76916512014-07-30 13:41:53 -0700600
601 return false;
602}
603#else
Peter Zijlstra427b1822016-12-23 10:36:00 +0100604static __always_inline bool
605mutex_optimistic_spin(struct mutex *lock, struct ww_acquire_ctx *ww_ctx,
Nicolai Hähnlec516df92016-12-21 19:46:38 +0100606 const bool use_ww_ctx, struct mutex_waiter *waiter)
Davidlohr Bueso76916512014-07-30 13:41:53 -0700607{
608 return false;
609}
Waiman Long41fcb9f2013-04-17 15:23:11 -0400610#endif
611
Peter Zijlstra3ca0ff52016-08-23 13:36:04 +0200612static noinline void __sched __mutex_unlock_slowpath(struct mutex *lock, unsigned long ip);
Ingo Molnar6053ee32006-01-09 15:59:19 -0800613
Randy Dunlapef5dc122010-09-02 15:48:16 -0700614/**
Ingo Molnar6053ee32006-01-09 15:59:19 -0800615 * mutex_unlock - release the mutex
616 * @lock: the mutex to be released
617 *
618 * Unlock a mutex that has been locked by this task previously.
619 *
620 * This function must not be used in interrupt context. Unlocking
621 * of a not locked mutex is not allowed.
622 *
623 * This function is similar to (but not equivalent to) up().
624 */
Harvey Harrison7ad5b3a2008-02-08 04:19:53 -0800625void __sched mutex_unlock(struct mutex *lock)
Ingo Molnar6053ee32006-01-09 15:59:19 -0800626{
Peter Zijlstra3ca0ff52016-08-23 13:36:04 +0200627#ifndef CONFIG_DEBUG_LOCK_ALLOC
628 if (__mutex_unlock_fast(lock))
629 return;
Peter Zijlstra0d66bf62009-01-12 14:01:47 +0100630#endif
Peter Zijlstra3ca0ff52016-08-23 13:36:04 +0200631 __mutex_unlock_slowpath(lock, _RET_IP_);
Ingo Molnar6053ee32006-01-09 15:59:19 -0800632}
Ingo Molnar6053ee32006-01-09 15:59:19 -0800633EXPORT_SYMBOL(mutex_unlock);
634
Maarten Lankhorst040a0a32013-06-24 10:30:04 +0200635/**
636 * ww_mutex_unlock - release the w/w mutex
637 * @lock: the mutex to be released
638 *
639 * Unlock a mutex that has been locked by this task previously with any of the
640 * ww_mutex_lock* functions (with or without an acquire context). It is
641 * forbidden to release the locks after releasing the acquire context.
642 *
643 * This function must not be used in interrupt context. Unlocking
644 * of a unlocked mutex is not allowed.
645 */
646void __sched ww_mutex_unlock(struct ww_mutex *lock)
647{
648 /*
649 * The unlocking fastpath is the 0->1 transition from 'locked'
650 * into 'unlocked' state:
651 */
652 if (lock->ctx) {
653#ifdef CONFIG_DEBUG_MUTEXES
654 DEBUG_LOCKS_WARN_ON(!lock->ctx->acquired);
655#endif
656 if (lock->ctx->acquired > 0)
657 lock->ctx->acquired--;
658 lock->ctx = NULL;
659 }
660
Peter Zijlstra3ca0ff52016-08-23 13:36:04 +0200661 mutex_unlock(&lock->base);
Maarten Lankhorst040a0a32013-06-24 10:30:04 +0200662}
663EXPORT_SYMBOL(ww_mutex_unlock);
664
Peter Ziljstra55f036c2018-06-15 10:07:12 +0200665
666static __always_inline int __sched
667__ww_mutex_kill(struct mutex *lock, struct ww_acquire_ctx *ww_ctx)
668{
669 if (ww_ctx->acquired > 0) {
670#ifdef CONFIG_DEBUG_MUTEXES
671 struct ww_mutex *ww;
672
673 ww = container_of(lock, struct ww_mutex, base);
674 DEBUG_LOCKS_WARN_ON(ww_ctx->contending_lock);
675 ww_ctx->contending_lock = ww;
676#endif
677 return -EDEADLK;
678 }
679
680 return 0;
681}
682
683
684/*
685 * Check whether we need to kill the transaction for the current lock acquire.
686 *
687 * Wait-Die: If we're trying to acquire a lock already held by an older
688 * context, kill ourselves.
689 *
690 * Since __ww_mutex_add_waiter() orders the wait-list on stamp, we only have to
691 * look at waiters before us in the wait-list.
692 */
Maarten Lankhorst040a0a32013-06-24 10:30:04 +0200693static inline int __sched
Peter Ziljstra55f036c2018-06-15 10:07:12 +0200694__ww_mutex_check_kill(struct mutex *lock, struct mutex_waiter *waiter,
695 struct ww_acquire_ctx *ctx)
Maarten Lankhorst040a0a32013-06-24 10:30:04 +0200696{
697 struct ww_mutex *ww = container_of(lock, struct ww_mutex, base);
Davidlohr Bueso4d3199e2015-02-22 19:31:41 -0800698 struct ww_acquire_ctx *hold_ctx = READ_ONCE(ww->ctx);
Nicolai Hähnle200b1872016-12-21 19:46:35 +0100699 struct mutex_waiter *cur;
Maarten Lankhorst040a0a32013-06-24 10:30:04 +0200700
Peter Ziljstra55f036c2018-06-15 10:07:12 +0200701 if (ctx->acquired == 0)
702 return 0;
703
Nicolai Hähnle200b1872016-12-21 19:46:35 +0100704 if (hold_ctx && __ww_ctx_stamp_after(ctx, hold_ctx))
Peter Ziljstra55f036c2018-06-15 10:07:12 +0200705 return __ww_mutex_kill(lock, ctx);
Maarten Lankhorst040a0a32013-06-24 10:30:04 +0200706
Nicolai Hähnle200b1872016-12-21 19:46:35 +0100707 /*
708 * If there is a waiter in front of us that has a context, then its
Peter Ziljstra55f036c2018-06-15 10:07:12 +0200709 * stamp is earlier than ours and we must kill ourself.
Nicolai Hähnle200b1872016-12-21 19:46:35 +0100710 */
711 cur = waiter;
712 list_for_each_entry_continue_reverse(cur, &lock->wait_list, list) {
Peter Ziljstra55f036c2018-06-15 10:07:12 +0200713 if (!cur->ww_ctx)
714 continue;
715
716 return __ww_mutex_kill(lock, ctx);
Maarten Lankhorst040a0a32013-06-24 10:30:04 +0200717 }
718
719 return 0;
720}
721
Peter Ziljstra55f036c2018-06-15 10:07:12 +0200722/*
723 * Add @waiter to the wait-list, keep the wait-list ordered by stamp, smallest
724 * first. Such that older contexts are preferred to acquire the lock over
725 * younger contexts.
726 *
727 * Waiters without context are interspersed in FIFO order.
728 *
729 * Furthermore, for Wait-Die kill ourself immediately when possible (there are
730 * older contexts already waiting) to avoid unnecessary waiting.
731 */
Nicolai Hähnle6baa5c62016-12-21 19:46:34 +0100732static inline int __sched
733__ww_mutex_add_waiter(struct mutex_waiter *waiter,
734 struct mutex *lock,
735 struct ww_acquire_ctx *ww_ctx)
736{
737 struct mutex_waiter *cur;
738 struct list_head *pos;
739
740 if (!ww_ctx) {
741 list_add_tail(&waiter->list, &lock->wait_list);
742 return 0;
743 }
744
745 /*
746 * Add the waiter before the first waiter with a higher stamp.
747 * Waiters without a context are skipped to avoid starving
Peter Ziljstra55f036c2018-06-15 10:07:12 +0200748 * them. Wait-Die waiters may die here.
Nicolai Hähnle6baa5c62016-12-21 19:46:34 +0100749 */
750 pos = &lock->wait_list;
751 list_for_each_entry_reverse(cur, &lock->wait_list, list) {
752 if (!cur->ww_ctx)
753 continue;
754
755 if (__ww_ctx_stamp_after(ww_ctx, cur->ww_ctx)) {
Peter Ziljstra55f036c2018-06-15 10:07:12 +0200756 /*
757 * Wait-Die: if we find an older context waiting, there
758 * is no point in queueing behind it, as we'd have to
759 * die the moment it would acquire the lock.
760 */
761 int ret = __ww_mutex_kill(lock, ww_ctx);
Nicolai Hähnle6baa5c62016-12-21 19:46:34 +0100762
Peter Ziljstra55f036c2018-06-15 10:07:12 +0200763 if (ret)
764 return ret;
Nicolai Hähnle6baa5c62016-12-21 19:46:34 +0100765
766 break;
767 }
768
769 pos = &cur->list;
Nicolai Hähnle200b1872016-12-21 19:46:35 +0100770
Peter Ziljstra55f036c2018-06-15 10:07:12 +0200771 /* Wait-Die: ensure younger waiters die. */
772 __ww_mutex_die(lock, cur, ww_ctx);
Nicolai Hähnle6baa5c62016-12-21 19:46:34 +0100773 }
774
775 list_add_tail(&waiter->list, pos);
Peter Ziljstra55f036c2018-06-15 10:07:12 +0200776
Nicolai Hähnle6baa5c62016-12-21 19:46:34 +0100777 return 0;
Maarten Lankhorst040a0a32013-06-24 10:30:04 +0200778}
779
Ingo Molnar6053ee32006-01-09 15:59:19 -0800780/*
781 * Lock a mutex (possibly interruptible), slowpath:
782 */
Maarten Lankhorst040a0a32013-06-24 10:30:04 +0200783static __always_inline int __sched
Peter Zijlstrae4564f72007-10-11 22:11:12 +0200784__mutex_lock_common(struct mutex *lock, long state, unsigned int subclass,
Maarten Lankhorst040a0a32013-06-24 10:30:04 +0200785 struct lockdep_map *nest_lock, unsigned long ip,
Tetsuo Handab0267502013-10-17 19:45:29 +0900786 struct ww_acquire_ctx *ww_ctx, const bool use_ww_ctx)
Ingo Molnar6053ee32006-01-09 15:59:19 -0800787{
Ingo Molnar6053ee32006-01-09 15:59:19 -0800788 struct mutex_waiter waiter;
Peter Zijlstra9d659ae2016-08-23 14:40:16 +0200789 bool first = false;
Waiman Longa40ca562016-08-26 19:35:08 -0400790 struct ww_mutex *ww;
Maarten Lankhorst040a0a32013-06-24 10:30:04 +0200791 int ret;
Ingo Molnar6053ee32006-01-09 15:59:19 -0800792
Peter Zijlstra427b1822016-12-23 10:36:00 +0100793 might_sleep();
Nicolai Hähnleea9e0fb2016-12-21 19:46:32 +0100794
Peter Zijlstra427b1822016-12-23 10:36:00 +0100795 ww = container_of(lock, struct ww_mutex, base);
Nicolai Hähnleea9e0fb2016-12-21 19:46:32 +0100796 if (use_ww_ctx && ww_ctx) {
Chris Wilson0422e832016-05-26 21:08:17 +0100797 if (unlikely(ww_ctx == READ_ONCE(ww->ctx)))
798 return -EALREADY;
799 }
800
Peter Zijlstra41719b02009-01-14 15:36:26 +0100801 preempt_disable();
Peter Zijlstrae4c70a62011-05-24 17:12:03 -0700802 mutex_acquire_nest(&lock->dep_map, subclass, 0, nest_lock, ip);
Frederic Weisbeckerc0226022009-12-02 20:49:16 +0100803
Peter Zijlstrae2747952017-01-11 14:17:48 +0100804 if (__mutex_trylock(lock) ||
Nicolai Hähnlec516df92016-12-21 19:46:38 +0100805 mutex_optimistic_spin(lock, ww_ctx, use_ww_ctx, NULL)) {
Davidlohr Bueso76916512014-07-30 13:41:53 -0700806 /* got the lock, yay! */
Peter Zijlstra3ca0ff52016-08-23 13:36:04 +0200807 lock_acquired(&lock->dep_map, ip);
Nicolai Hähnleea9e0fb2016-12-21 19:46:32 +0100808 if (use_ww_ctx && ww_ctx)
Peter Zijlstra3ca0ff52016-08-23 13:36:04 +0200809 ww_mutex_set_context_fastpath(ww, ww_ctx);
Davidlohr Bueso76916512014-07-30 13:41:53 -0700810 preempt_enable();
811 return 0;
Peter Zijlstra0d66bf62009-01-12 14:01:47 +0100812 }
Davidlohr Bueso76916512014-07-30 13:41:53 -0700813
Peter Zijlstrab9c16a02017-01-17 16:06:09 +0100814 spin_lock(&lock->wait_lock);
Jason Low1e820c92014-06-11 11:37:21 -0700815 /*
Peter Zijlstra3ca0ff52016-08-23 13:36:04 +0200816 * After waiting to acquire the wait_lock, try again.
Jason Low1e820c92014-06-11 11:37:21 -0700817 */
Nicolai Hähnle659cf9f2016-12-21 19:46:36 +0100818 if (__mutex_trylock(lock)) {
819 if (use_ww_ctx && ww_ctx)
Peter Ziljstra55f036c2018-06-15 10:07:12 +0200820 __ww_mutex_check_waiters(lock, ww_ctx);
Nicolai Hähnle659cf9f2016-12-21 19:46:36 +0100821
Davidlohr Buesoec83f422013-06-28 13:13:18 -0700822 goto skip_wait;
Nicolai Hähnle659cf9f2016-12-21 19:46:36 +0100823 }
Davidlohr Buesoec83f422013-06-28 13:13:18 -0700824
Ingo Molnar9a11b49a2006-07-03 00:24:33 -0700825 debug_mutex_lock_common(lock, &waiter);
Davidlohr Buesod269a8b2017-01-03 13:43:13 -0800826 debug_mutex_add_waiter(lock, &waiter, current);
Ingo Molnar6053ee32006-01-09 15:59:19 -0800827
Nicolai Hähnle6baa5c62016-12-21 19:46:34 +0100828 lock_contended(&lock->dep_map, ip);
829
830 if (!use_ww_ctx) {
831 /* add waiting tasks to the end of the waitqueue (FIFO): */
832 list_add_tail(&waiter.list, &lock->wait_list);
Nicolai Hähnle977625a2016-12-21 19:46:39 +0100833
834#ifdef CONFIG_DEBUG_MUTEXES
835 waiter.ww_ctx = MUTEX_POISON_WW_CTX;
836#endif
Nicolai Hähnle6baa5c62016-12-21 19:46:34 +0100837 } else {
Peter Ziljstra55f036c2018-06-15 10:07:12 +0200838 /*
839 * Add in stamp order, waking up waiters that must kill
840 * themselves.
841 */
Nicolai Hähnle6baa5c62016-12-21 19:46:34 +0100842 ret = __ww_mutex_add_waiter(&waiter, lock, ww_ctx);
843 if (ret)
Peter Ziljstra55f036c2018-06-15 10:07:12 +0200844 goto err_early_kill;
Nicolai Hähnle6baa5c62016-12-21 19:46:34 +0100845
846 waiter.ww_ctx = ww_ctx;
847 }
848
Davidlohr Buesod269a8b2017-01-03 13:43:13 -0800849 waiter.task = current;
Ingo Molnar6053ee32006-01-09 15:59:19 -0800850
Peter Zijlstra9d659ae2016-08-23 14:40:16 +0200851 if (__mutex_waiter_is_first(lock, &waiter))
Peter Zijlstra3ca0ff52016-08-23 13:36:04 +0200852 __mutex_set_flag(lock, MUTEX_FLAG_WAITERS);
853
Davidlohr Bueso642fa442017-01-03 13:43:14 -0800854 set_current_state(state);
Ingo Molnar6053ee32006-01-09 15:59:19 -0800855 for (;;) {
Peter Zijlstra5bbd7e62016-09-02 13:42:12 +0200856 /*
857 * Once we hold wait_lock, we're serialized against
858 * mutex_unlock() handing the lock off to us, do a trylock
859 * before testing the error conditions to make sure we pick up
860 * the handoff.
861 */
Peter Zijlstrae2747952017-01-11 14:17:48 +0100862 if (__mutex_trylock(lock))
Peter Zijlstra5bbd7e62016-09-02 13:42:12 +0200863 goto acquired;
Ingo Molnar6053ee32006-01-09 15:59:19 -0800864
865 /*
Peter Ziljstra55f036c2018-06-15 10:07:12 +0200866 * Check for signals and kill conditions while holding
Peter Zijlstra5bbd7e62016-09-02 13:42:12 +0200867 * wait_lock. This ensures the lock cancellation is ordered
868 * against mutex_unlock() and wake-ups do not go missing.
Ingo Molnar6053ee32006-01-09 15:59:19 -0800869 */
Davidlohr Buesod269a8b2017-01-03 13:43:13 -0800870 if (unlikely(signal_pending_state(state, current))) {
Maarten Lankhorst040a0a32013-06-24 10:30:04 +0200871 ret = -EINTR;
872 goto err;
Ingo Molnar6053ee32006-01-09 15:59:19 -0800873 }
Maarten Lankhorst040a0a32013-06-24 10:30:04 +0200874
Peter Ziljstra55f036c2018-06-15 10:07:12 +0200875 if (use_ww_ctx && ww_ctx) {
876 ret = __ww_mutex_check_kill(lock, &waiter, ww_ctx);
Maarten Lankhorst040a0a32013-06-24 10:30:04 +0200877 if (ret)
878 goto err;
879 }
880
Peter Zijlstrab9c16a02017-01-17 16:06:09 +0100881 spin_unlock(&lock->wait_lock);
Thomas Gleixnerbd2f5532011-03-21 12:33:18 +0100882 schedule_preempt_disabled();
Peter Zijlstra9d659ae2016-08-23 14:40:16 +0200883
Nicolai Hähnle6baa5c62016-12-21 19:46:34 +0100884 /*
885 * ww_mutex needs to always recheck its position since its waiter
886 * list is not FIFO ordered.
887 */
888 if ((use_ww_ctx && ww_ctx) || !first) {
889 first = __mutex_waiter_is_first(lock, &waiter);
890 if (first)
891 __mutex_set_flag(lock, MUTEX_FLAG_HANDOFF);
Peter Zijlstra9d659ae2016-08-23 14:40:16 +0200892 }
Peter Zijlstra5bbd7e62016-09-02 13:42:12 +0200893
Davidlohr Bueso642fa442017-01-03 13:43:14 -0800894 set_current_state(state);
Peter Zijlstra5bbd7e62016-09-02 13:42:12 +0200895 /*
896 * Here we order against unlock; we must either see it change
897 * state back to RUNNING and fall through the next schedule(),
898 * or we must see its unlock and acquire.
899 */
Peter Zijlstrae2747952017-01-11 14:17:48 +0100900 if (__mutex_trylock(lock) ||
Nicolai Hähnlec516df92016-12-21 19:46:38 +0100901 (first && mutex_optimistic_spin(lock, ww_ctx, use_ww_ctx, &waiter)))
Peter Zijlstra5bbd7e62016-09-02 13:42:12 +0200902 break;
903
Peter Zijlstrab9c16a02017-01-17 16:06:09 +0100904 spin_lock(&lock->wait_lock);
Ingo Molnar6053ee32006-01-09 15:59:19 -0800905 }
Peter Zijlstrab9c16a02017-01-17 16:06:09 +0100906 spin_lock(&lock->wait_lock);
Peter Zijlstra5bbd7e62016-09-02 13:42:12 +0200907acquired:
Davidlohr Bueso642fa442017-01-03 13:43:14 -0800908 __set_current_state(TASK_RUNNING);
Davidlohr Bueso51587bc2015-01-19 17:39:21 -0800909
Davidlohr Buesod269a8b2017-01-03 13:43:13 -0800910 mutex_remove_waiter(lock, &waiter, current);
Davidlohr Buesoec83f422013-06-28 13:13:18 -0700911 if (likely(list_empty(&lock->wait_list)))
Peter Zijlstra9d659ae2016-08-23 14:40:16 +0200912 __mutex_clear_flag(lock, MUTEX_FLAGS);
Peter Zijlstra3ca0ff52016-08-23 13:36:04 +0200913
Davidlohr Buesoec83f422013-06-28 13:13:18 -0700914 debug_mutex_free_waiter(&waiter);
915
916skip_wait:
917 /* got the lock - cleanup and rejoice! */
918 lock_acquired(&lock->dep_map, ip);
Ingo Molnar6053ee32006-01-09 15:59:19 -0800919
Nicolai Hähnleea9e0fb2016-12-21 19:46:32 +0100920 if (use_ww_ctx && ww_ctx)
Peter Ziljstra55f036c2018-06-15 10:07:12 +0200921 ww_mutex_lock_acquired(ww, ww_ctx);
Maarten Lankhorst040a0a32013-06-24 10:30:04 +0200922
Peter Zijlstrab9c16a02017-01-17 16:06:09 +0100923 spin_unlock(&lock->wait_lock);
Peter Zijlstra41719b02009-01-14 15:36:26 +0100924 preempt_enable();
Ingo Molnar6053ee32006-01-09 15:59:19 -0800925 return 0;
Maarten Lankhorst040a0a32013-06-24 10:30:04 +0200926
927err:
Davidlohr Bueso642fa442017-01-03 13:43:14 -0800928 __set_current_state(TASK_RUNNING);
Davidlohr Buesod269a8b2017-01-03 13:43:13 -0800929 mutex_remove_waiter(lock, &waiter, current);
Peter Ziljstra55f036c2018-06-15 10:07:12 +0200930err_early_kill:
Peter Zijlstrab9c16a02017-01-17 16:06:09 +0100931 spin_unlock(&lock->wait_lock);
Maarten Lankhorst040a0a32013-06-24 10:30:04 +0200932 debug_mutex_free_waiter(&waiter);
933 mutex_release(&lock->dep_map, 1, ip);
934 preempt_enable();
935 return ret;
Ingo Molnar6053ee32006-01-09 15:59:19 -0800936}
937
Peter Zijlstra427b1822016-12-23 10:36:00 +0100938static int __sched
939__mutex_lock(struct mutex *lock, long state, unsigned int subclass,
940 struct lockdep_map *nest_lock, unsigned long ip)
941{
942 return __mutex_lock_common(lock, state, subclass, nest_lock, ip, NULL, false);
943}
944
945static int __sched
946__ww_mutex_lock(struct mutex *lock, long state, unsigned int subclass,
947 struct lockdep_map *nest_lock, unsigned long ip,
948 struct ww_acquire_ctx *ww_ctx)
949{
950 return __mutex_lock_common(lock, state, subclass, nest_lock, ip, ww_ctx, true);
951}
952
Ingo Molnaref5d4702006-07-03 00:24:55 -0700953#ifdef CONFIG_DEBUG_LOCK_ALLOC
954void __sched
955mutex_lock_nested(struct mutex *lock, unsigned int subclass)
956{
Peter Zijlstra427b1822016-12-23 10:36:00 +0100957 __mutex_lock(lock, TASK_UNINTERRUPTIBLE, subclass, NULL, _RET_IP_);
Ingo Molnaref5d4702006-07-03 00:24:55 -0700958}
959
960EXPORT_SYMBOL_GPL(mutex_lock_nested);
NeilBrownd63a5a72006-12-08 02:36:17 -0800961
Peter Zijlstrae4c70a62011-05-24 17:12:03 -0700962void __sched
963_mutex_lock_nest_lock(struct mutex *lock, struct lockdep_map *nest)
964{
Peter Zijlstra427b1822016-12-23 10:36:00 +0100965 __mutex_lock(lock, TASK_UNINTERRUPTIBLE, 0, nest, _RET_IP_);
Peter Zijlstrae4c70a62011-05-24 17:12:03 -0700966}
Peter Zijlstrae4c70a62011-05-24 17:12:03 -0700967EXPORT_SYMBOL_GPL(_mutex_lock_nest_lock);
968
NeilBrownd63a5a72006-12-08 02:36:17 -0800969int __sched
Liam R. Howlettad776532007-12-06 17:37:59 -0500970mutex_lock_killable_nested(struct mutex *lock, unsigned int subclass)
971{
Peter Zijlstra427b1822016-12-23 10:36:00 +0100972 return __mutex_lock(lock, TASK_KILLABLE, subclass, NULL, _RET_IP_);
Liam R. Howlettad776532007-12-06 17:37:59 -0500973}
974EXPORT_SYMBOL_GPL(mutex_lock_killable_nested);
975
976int __sched
NeilBrownd63a5a72006-12-08 02:36:17 -0800977mutex_lock_interruptible_nested(struct mutex *lock, unsigned int subclass)
978{
Peter Zijlstra427b1822016-12-23 10:36:00 +0100979 return __mutex_lock(lock, TASK_INTERRUPTIBLE, subclass, NULL, _RET_IP_);
NeilBrownd63a5a72006-12-08 02:36:17 -0800980}
NeilBrownd63a5a72006-12-08 02:36:17 -0800981EXPORT_SYMBOL_GPL(mutex_lock_interruptible_nested);
Maarten Lankhorst040a0a32013-06-24 10:30:04 +0200982
Tejun Heo1460cb62016-10-28 12:58:11 -0400983void __sched
984mutex_lock_io_nested(struct mutex *lock, unsigned int subclass)
985{
986 int token;
987
988 might_sleep();
989
990 token = io_schedule_prepare();
991 __mutex_lock_common(lock, TASK_UNINTERRUPTIBLE,
992 subclass, NULL, _RET_IP_, NULL, 0);
993 io_schedule_finish(token);
994}
995EXPORT_SYMBOL_GPL(mutex_lock_io_nested);
996
Daniel Vetter23010022013-06-20 13:31:17 +0200997static inline int
998ww_mutex_deadlock_injection(struct ww_mutex *lock, struct ww_acquire_ctx *ctx)
999{
1000#ifdef CONFIG_DEBUG_WW_MUTEX_SLOWPATH
1001 unsigned tmp;
1002
1003 if (ctx->deadlock_inject_countdown-- == 0) {
1004 tmp = ctx->deadlock_inject_interval;
1005 if (tmp > UINT_MAX/4)
1006 tmp = UINT_MAX;
1007 else
1008 tmp = tmp*2 + tmp + tmp/2;
1009
1010 ctx->deadlock_inject_interval = tmp;
1011 ctx->deadlock_inject_countdown = tmp;
1012 ctx->contending_lock = lock;
1013
1014 ww_mutex_unlock(lock);
1015
1016 return -EDEADLK;
1017 }
1018#endif
1019
1020 return 0;
1021}
Maarten Lankhorst040a0a32013-06-24 10:30:04 +02001022
1023int __sched
Nicolai Hähnlec5470b22016-12-21 19:46:33 +01001024ww_mutex_lock(struct ww_mutex *lock, struct ww_acquire_ctx *ctx)
Maarten Lankhorst040a0a32013-06-24 10:30:04 +02001025{
Daniel Vetter23010022013-06-20 13:31:17 +02001026 int ret;
1027
Maarten Lankhorst040a0a32013-06-24 10:30:04 +02001028 might_sleep();
Peter Zijlstra427b1822016-12-23 10:36:00 +01001029 ret = __ww_mutex_lock(&lock->base, TASK_UNINTERRUPTIBLE,
1030 0, ctx ? &ctx->dep_map : NULL, _RET_IP_,
1031 ctx);
Nicolai Hähnleea9e0fb2016-12-21 19:46:32 +01001032 if (!ret && ctx && ctx->acquired > 1)
Daniel Vetter23010022013-06-20 13:31:17 +02001033 return ww_mutex_deadlock_injection(lock, ctx);
1034
1035 return ret;
Maarten Lankhorst040a0a32013-06-24 10:30:04 +02001036}
Nicolai Hähnlec5470b22016-12-21 19:46:33 +01001037EXPORT_SYMBOL_GPL(ww_mutex_lock);
Maarten Lankhorst040a0a32013-06-24 10:30:04 +02001038
1039int __sched
Nicolai Hähnlec5470b22016-12-21 19:46:33 +01001040ww_mutex_lock_interruptible(struct ww_mutex *lock, struct ww_acquire_ctx *ctx)
Maarten Lankhorst040a0a32013-06-24 10:30:04 +02001041{
Daniel Vetter23010022013-06-20 13:31:17 +02001042 int ret;
1043
Maarten Lankhorst040a0a32013-06-24 10:30:04 +02001044 might_sleep();
Peter Zijlstra427b1822016-12-23 10:36:00 +01001045 ret = __ww_mutex_lock(&lock->base, TASK_INTERRUPTIBLE,
1046 0, ctx ? &ctx->dep_map : NULL, _RET_IP_,
1047 ctx);
Daniel Vetter23010022013-06-20 13:31:17 +02001048
Nicolai Hähnleea9e0fb2016-12-21 19:46:32 +01001049 if (!ret && ctx && ctx->acquired > 1)
Daniel Vetter23010022013-06-20 13:31:17 +02001050 return ww_mutex_deadlock_injection(lock, ctx);
1051
1052 return ret;
Maarten Lankhorst040a0a32013-06-24 10:30:04 +02001053}
Nicolai Hähnlec5470b22016-12-21 19:46:33 +01001054EXPORT_SYMBOL_GPL(ww_mutex_lock_interruptible);
Maarten Lankhorst040a0a32013-06-24 10:30:04 +02001055
Ingo Molnaref5d4702006-07-03 00:24:55 -07001056#endif
1057
Ingo Molnar6053ee32006-01-09 15:59:19 -08001058/*
1059 * Release the lock, slowpath:
1060 */
Peter Zijlstra3ca0ff52016-08-23 13:36:04 +02001061static noinline void __sched __mutex_unlock_slowpath(struct mutex *lock, unsigned long ip)
Ingo Molnar6053ee32006-01-09 15:59:19 -08001062{
Peter Zijlstra9d659ae2016-08-23 14:40:16 +02001063 struct task_struct *next = NULL;
Waiman Long194a6b52016-11-17 11:46:38 -05001064 DEFINE_WAKE_Q(wake_q);
Peter Zijlstrab9c16a02017-01-17 16:06:09 +01001065 unsigned long owner;
Ingo Molnar6053ee32006-01-09 15:59:19 -08001066
Peter Zijlstra3ca0ff52016-08-23 13:36:04 +02001067 mutex_release(&lock->dep_map, 1, ip);
1068
Ingo Molnar6053ee32006-01-09 15:59:19 -08001069 /*
Peter Zijlstra9d659ae2016-08-23 14:40:16 +02001070 * Release the lock before (potentially) taking the spinlock such that
1071 * other contenders can get on with things ASAP.
1072 *
1073 * Except when HANDOFF, in that case we must not clear the owner field,
1074 * but instead set it to the top waiter.
Ingo Molnar6053ee32006-01-09 15:59:19 -08001075 */
Peter Zijlstra9d659ae2016-08-23 14:40:16 +02001076 owner = atomic_long_read(&lock->owner);
1077 for (;;) {
1078 unsigned long old;
1079
1080#ifdef CONFIG_DEBUG_MUTEXES
1081 DEBUG_LOCKS_WARN_ON(__owner_task(owner) != current);
Peter Zijlstrae2747952017-01-11 14:17:48 +01001082 DEBUG_LOCKS_WARN_ON(owner & MUTEX_FLAG_PICKUP);
Peter Zijlstra9d659ae2016-08-23 14:40:16 +02001083#endif
1084
1085 if (owner & MUTEX_FLAG_HANDOFF)
1086 break;
1087
1088 old = atomic_long_cmpxchg_release(&lock->owner, owner,
1089 __owner_flags(owner));
1090 if (old == owner) {
1091 if (owner & MUTEX_FLAG_WAITERS)
1092 break;
1093
1094 return;
1095 }
1096
1097 owner = old;
1098 }
Ingo Molnar6053ee32006-01-09 15:59:19 -08001099
Peter Zijlstrab9c16a02017-01-17 16:06:09 +01001100 spin_lock(&lock->wait_lock);
Jason Low1d8fe7d2014-01-28 11:13:14 -08001101 debug_mutex_unlock(lock);
Ingo Molnar6053ee32006-01-09 15:59:19 -08001102 if (!list_empty(&lock->wait_list)) {
1103 /* get the first entry from the wait-list: */
1104 struct mutex_waiter *waiter =
Peter Zijlstra9d659ae2016-08-23 14:40:16 +02001105 list_first_entry(&lock->wait_list,
1106 struct mutex_waiter, list);
1107
1108 next = waiter->task;
Ingo Molnar6053ee32006-01-09 15:59:19 -08001109
1110 debug_mutex_wake_waiter(lock, waiter);
Peter Zijlstra9d659ae2016-08-23 14:40:16 +02001111 wake_q_add(&wake_q, next);
Ingo Molnar6053ee32006-01-09 15:59:19 -08001112 }
1113
Peter Zijlstra9d659ae2016-08-23 14:40:16 +02001114 if (owner & MUTEX_FLAG_HANDOFF)
1115 __mutex_handoff(lock, next);
1116
Peter Zijlstrab9c16a02017-01-17 16:06:09 +01001117 spin_unlock(&lock->wait_lock);
Peter Zijlstra9d659ae2016-08-23 14:40:16 +02001118
Davidlohr Bueso1329ce62016-01-24 18:23:43 -08001119 wake_up_q(&wake_q);
Ingo Molnar6053ee32006-01-09 15:59:19 -08001120}
1121
Peter Zijlstrae4564f72007-10-11 22:11:12 +02001122#ifndef CONFIG_DEBUG_LOCK_ALLOC
Ingo Molnar9a11b49a2006-07-03 00:24:33 -07001123/*
Ingo Molnar6053ee32006-01-09 15:59:19 -08001124 * Here come the less common (and hence less performance-critical) APIs:
1125 * mutex_lock_interruptible() and mutex_trylock().
1126 */
Harvey Harrison7ad5b3a2008-02-08 04:19:53 -08001127static noinline int __sched
Maarten Lankhorsta41b56e2013-06-20 13:31:05 +02001128__mutex_lock_killable_slowpath(struct mutex *lock);
Liam R. Howlettad776532007-12-06 17:37:59 -05001129
Harvey Harrison7ad5b3a2008-02-08 04:19:53 -08001130static noinline int __sched
Maarten Lankhorsta41b56e2013-06-20 13:31:05 +02001131__mutex_lock_interruptible_slowpath(struct mutex *lock);
Ingo Molnar6053ee32006-01-09 15:59:19 -08001132
Randy Dunlapef5dc122010-09-02 15:48:16 -07001133/**
Matthew Wilcox45dbac02018-03-15 04:58:12 -07001134 * mutex_lock_interruptible() - Acquire the mutex, interruptible by signals.
1135 * @lock: The mutex to be acquired.
Ingo Molnar6053ee32006-01-09 15:59:19 -08001136 *
Matthew Wilcox45dbac02018-03-15 04:58:12 -07001137 * Lock the mutex like mutex_lock(). If a signal is delivered while the
1138 * process is sleeping, this function will return without acquiring the
1139 * mutex.
Ingo Molnar6053ee32006-01-09 15:59:19 -08001140 *
Matthew Wilcox45dbac02018-03-15 04:58:12 -07001141 * Context: Process context.
1142 * Return: 0 if the lock was successfully acquired or %-EINTR if a
1143 * signal arrived.
Ingo Molnar6053ee32006-01-09 15:59:19 -08001144 */
Harvey Harrison7ad5b3a2008-02-08 04:19:53 -08001145int __sched mutex_lock_interruptible(struct mutex *lock)
Ingo Molnar6053ee32006-01-09 15:59:19 -08001146{
Ingo Molnarc544bdb2006-01-10 22:10:36 +01001147 might_sleep();
Peter Zijlstra3ca0ff52016-08-23 13:36:04 +02001148
1149 if (__mutex_trylock_fast(lock))
Maarten Lankhorsta41b56e2013-06-20 13:31:05 +02001150 return 0;
Peter Zijlstra3ca0ff52016-08-23 13:36:04 +02001151
1152 return __mutex_lock_interruptible_slowpath(lock);
Ingo Molnar6053ee32006-01-09 15:59:19 -08001153}
1154
1155EXPORT_SYMBOL(mutex_lock_interruptible);
1156
Matthew Wilcox45dbac02018-03-15 04:58:12 -07001157/**
1158 * mutex_lock_killable() - Acquire the mutex, interruptible by fatal signals.
1159 * @lock: The mutex to be acquired.
1160 *
1161 * Lock the mutex like mutex_lock(). If a signal which will be fatal to
1162 * the current process is delivered while the process is sleeping, this
1163 * function will return without acquiring the mutex.
1164 *
1165 * Context: Process context.
1166 * Return: 0 if the lock was successfully acquired or %-EINTR if a
1167 * fatal signal arrived.
1168 */
Harvey Harrison7ad5b3a2008-02-08 04:19:53 -08001169int __sched mutex_lock_killable(struct mutex *lock)
Liam R. Howlettad776532007-12-06 17:37:59 -05001170{
1171 might_sleep();
Peter Zijlstra3ca0ff52016-08-23 13:36:04 +02001172
1173 if (__mutex_trylock_fast(lock))
Maarten Lankhorsta41b56e2013-06-20 13:31:05 +02001174 return 0;
Peter Zijlstra3ca0ff52016-08-23 13:36:04 +02001175
1176 return __mutex_lock_killable_slowpath(lock);
Liam R. Howlettad776532007-12-06 17:37:59 -05001177}
1178EXPORT_SYMBOL(mutex_lock_killable);
1179
Matthew Wilcox45dbac02018-03-15 04:58:12 -07001180/**
1181 * mutex_lock_io() - Acquire the mutex and mark the process as waiting for I/O
1182 * @lock: The mutex to be acquired.
1183 *
1184 * Lock the mutex like mutex_lock(). While the task is waiting for this
1185 * mutex, it will be accounted as being in the IO wait state by the
1186 * scheduler.
1187 *
1188 * Context: Process context.
1189 */
Tejun Heo1460cb62016-10-28 12:58:11 -04001190void __sched mutex_lock_io(struct mutex *lock)
1191{
1192 int token;
1193
1194 token = io_schedule_prepare();
1195 mutex_lock(lock);
1196 io_schedule_finish(token);
1197}
1198EXPORT_SYMBOL_GPL(mutex_lock_io);
1199
Peter Zijlstra3ca0ff52016-08-23 13:36:04 +02001200static noinline void __sched
1201__mutex_lock_slowpath(struct mutex *lock)
Peter Zijlstrae4564f72007-10-11 22:11:12 +02001202{
Peter Zijlstra427b1822016-12-23 10:36:00 +01001203 __mutex_lock(lock, TASK_UNINTERRUPTIBLE, 0, NULL, _RET_IP_);
Peter Zijlstrae4564f72007-10-11 22:11:12 +02001204}
1205
Harvey Harrison7ad5b3a2008-02-08 04:19:53 -08001206static noinline int __sched
Maarten Lankhorsta41b56e2013-06-20 13:31:05 +02001207__mutex_lock_killable_slowpath(struct mutex *lock)
Liam R. Howlettad776532007-12-06 17:37:59 -05001208{
Peter Zijlstra427b1822016-12-23 10:36:00 +01001209 return __mutex_lock(lock, TASK_KILLABLE, 0, NULL, _RET_IP_);
Liam R. Howlettad776532007-12-06 17:37:59 -05001210}
1211
Harvey Harrison7ad5b3a2008-02-08 04:19:53 -08001212static noinline int __sched
Maarten Lankhorsta41b56e2013-06-20 13:31:05 +02001213__mutex_lock_interruptible_slowpath(struct mutex *lock)
Ingo Molnar6053ee32006-01-09 15:59:19 -08001214{
Peter Zijlstra427b1822016-12-23 10:36:00 +01001215 return __mutex_lock(lock, TASK_INTERRUPTIBLE, 0, NULL, _RET_IP_);
Ingo Molnar6053ee32006-01-09 15:59:19 -08001216}
Maarten Lankhorst040a0a32013-06-24 10:30:04 +02001217
1218static noinline int __sched
1219__ww_mutex_lock_slowpath(struct ww_mutex *lock, struct ww_acquire_ctx *ctx)
1220{
Peter Zijlstra427b1822016-12-23 10:36:00 +01001221 return __ww_mutex_lock(&lock->base, TASK_UNINTERRUPTIBLE, 0, NULL,
1222 _RET_IP_, ctx);
Maarten Lankhorst040a0a32013-06-24 10:30:04 +02001223}
1224
1225static noinline int __sched
1226__ww_mutex_lock_interruptible_slowpath(struct ww_mutex *lock,
1227 struct ww_acquire_ctx *ctx)
1228{
Peter Zijlstra427b1822016-12-23 10:36:00 +01001229 return __ww_mutex_lock(&lock->base, TASK_INTERRUPTIBLE, 0, NULL,
1230 _RET_IP_, ctx);
Maarten Lankhorst040a0a32013-06-24 10:30:04 +02001231}
1232
Peter Zijlstrae4564f72007-10-11 22:11:12 +02001233#endif
Ingo Molnar6053ee32006-01-09 15:59:19 -08001234
Randy Dunlapef5dc122010-09-02 15:48:16 -07001235/**
1236 * mutex_trylock - try to acquire the mutex, without waiting
Ingo Molnar6053ee32006-01-09 15:59:19 -08001237 * @lock: the mutex to be acquired
1238 *
1239 * Try to acquire the mutex atomically. Returns 1 if the mutex
1240 * has been acquired successfully, and 0 on contention.
1241 *
1242 * NOTE: this function follows the spin_trylock() convention, so
Randy Dunlapef5dc122010-09-02 15:48:16 -07001243 * it is negated from the down_trylock() return values! Be careful
Ingo Molnar6053ee32006-01-09 15:59:19 -08001244 * about this when converting semaphore users to mutexes.
1245 *
1246 * This function must not be used in interrupt context. The
1247 * mutex must be released by the same task that acquired it.
1248 */
Harvey Harrison7ad5b3a2008-02-08 04:19:53 -08001249int __sched mutex_trylock(struct mutex *lock)
Ingo Molnar6053ee32006-01-09 15:59:19 -08001250{
Peter Zijlstrae2747952017-01-11 14:17:48 +01001251 bool locked = __mutex_trylock(lock);
Peter Zijlstra0d66bf62009-01-12 14:01:47 +01001252
Peter Zijlstra3ca0ff52016-08-23 13:36:04 +02001253 if (locked)
1254 mutex_acquire(&lock->dep_map, 0, 1, _RET_IP_);
Peter Zijlstra0d66bf62009-01-12 14:01:47 +01001255
Peter Zijlstra3ca0ff52016-08-23 13:36:04 +02001256 return locked;
Ingo Molnar6053ee32006-01-09 15:59:19 -08001257}
Ingo Molnar6053ee32006-01-09 15:59:19 -08001258EXPORT_SYMBOL(mutex_trylock);
Andrew Mortona511e3f2009-04-29 15:59:58 -07001259
Maarten Lankhorst040a0a32013-06-24 10:30:04 +02001260#ifndef CONFIG_DEBUG_LOCK_ALLOC
1261int __sched
Nicolai Hähnlec5470b22016-12-21 19:46:33 +01001262ww_mutex_lock(struct ww_mutex *lock, struct ww_acquire_ctx *ctx)
Maarten Lankhorst040a0a32013-06-24 10:30:04 +02001263{
Maarten Lankhorst040a0a32013-06-24 10:30:04 +02001264 might_sleep();
1265
Peter Zijlstra3ca0ff52016-08-23 13:36:04 +02001266 if (__mutex_trylock_fast(&lock->base)) {
Nicolai Hähnleea9e0fb2016-12-21 19:46:32 +01001267 if (ctx)
1268 ww_mutex_set_context_fastpath(lock, ctx);
Peter Zijlstra3ca0ff52016-08-23 13:36:04 +02001269 return 0;
1270 }
1271
1272 return __ww_mutex_lock_slowpath(lock, ctx);
Maarten Lankhorst040a0a32013-06-24 10:30:04 +02001273}
Nicolai Hähnlec5470b22016-12-21 19:46:33 +01001274EXPORT_SYMBOL(ww_mutex_lock);
Maarten Lankhorst040a0a32013-06-24 10:30:04 +02001275
1276int __sched
Nicolai Hähnlec5470b22016-12-21 19:46:33 +01001277ww_mutex_lock_interruptible(struct ww_mutex *lock, struct ww_acquire_ctx *ctx)
Maarten Lankhorst040a0a32013-06-24 10:30:04 +02001278{
Maarten Lankhorst040a0a32013-06-24 10:30:04 +02001279 might_sleep();
1280
Peter Zijlstra3ca0ff52016-08-23 13:36:04 +02001281 if (__mutex_trylock_fast(&lock->base)) {
Nicolai Hähnleea9e0fb2016-12-21 19:46:32 +01001282 if (ctx)
1283 ww_mutex_set_context_fastpath(lock, ctx);
Peter Zijlstra3ca0ff52016-08-23 13:36:04 +02001284 return 0;
1285 }
1286
1287 return __ww_mutex_lock_interruptible_slowpath(lock, ctx);
Maarten Lankhorst040a0a32013-06-24 10:30:04 +02001288}
Nicolai Hähnlec5470b22016-12-21 19:46:33 +01001289EXPORT_SYMBOL(ww_mutex_lock_interruptible);
Maarten Lankhorst040a0a32013-06-24 10:30:04 +02001290
1291#endif
1292
Andrew Mortona511e3f2009-04-29 15:59:58 -07001293/**
1294 * atomic_dec_and_mutex_lock - return holding mutex if we dec to 0
1295 * @cnt: the atomic which we are to dec
1296 * @lock: the mutex to return holding if we dec to 0
1297 *
1298 * return true and hold lock if we dec to 0, return false otherwise
1299 */
1300int atomic_dec_and_mutex_lock(atomic_t *cnt, struct mutex *lock)
1301{
1302 /* dec if we can't possibly hit 0 */
1303 if (atomic_add_unless(cnt, -1, 1))
1304 return 0;
1305 /* we might hit 0, so take the lock */
1306 mutex_lock(lock);
1307 if (!atomic_dec_and_test(cnt)) {
1308 /* when we actually did the dec, we didn't hit 0 */
1309 mutex_unlock(lock);
1310 return 0;
1311 }
1312 /* we hit 0, and we hold the lock */
1313 return 1;
1314}
1315EXPORT_SYMBOL(atomic_dec_and_mutex_lock);