Ingo Molnar | 6053ee3 | 2006-01-09 15:59:19 -0800 | [diff] [blame] | 1 | /* |
Peter Zijlstra | 67a6de4 | 2013-11-08 08:26:39 +0100 | [diff] [blame] | 2 | * kernel/locking/mutex.c |
Ingo Molnar | 6053ee3 | 2006-01-09 15:59:19 -0800 | [diff] [blame] | 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 Zijlstra | 0d66bf6 | 2009-01-12 14:01:47 +0100 | [diff] [blame] | 13 | * - 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 Bueso | 214e0ae | 2014-07-30 13:41:55 -0700 | [diff] [blame] | 18 | * Also see Documentation/locking/mutex-design.txt. |
Ingo Molnar | 6053ee3 | 2006-01-09 15:59:19 -0800 | [diff] [blame] | 19 | */ |
| 20 | #include <linux/mutex.h> |
Maarten Lankhorst | 1b375dc | 2013-07-05 09:29:32 +0200 | [diff] [blame] | 21 | #include <linux/ww_mutex.h> |
Ingo Molnar | 174cd4b | 2017-02-02 19:15:33 +0100 | [diff] [blame] | 22 | #include <linux/sched/signal.h> |
Clark Williams | 8bd75c7 | 2013-02-07 09:47:07 -0600 | [diff] [blame] | 23 | #include <linux/sched/rt.h> |
Ingo Molnar | 84f001e | 2017-02-01 16:36:40 +0100 | [diff] [blame] | 24 | #include <linux/sched/wake_q.h> |
Ingo Molnar | b17b015 | 2017-02-08 18:51:35 +0100 | [diff] [blame] | 25 | #include <linux/sched/debug.h> |
Paul Gortmaker | 9984de1 | 2011-05-23 14:51:41 -0400 | [diff] [blame] | 26 | #include <linux/export.h> |
Ingo Molnar | 6053ee3 | 2006-01-09 15:59:19 -0800 | [diff] [blame] | 27 | #include <linux/spinlock.h> |
| 28 | #include <linux/interrupt.h> |
Ingo Molnar | 9a11b49a | 2006-07-03 00:24:33 -0700 | [diff] [blame] | 29 | #include <linux/debug_locks.h> |
Davidlohr Bueso | 7a215f8 | 2015-01-30 01:14:25 -0800 | [diff] [blame] | 30 | #include <linux/osq_lock.h> |
Ingo Molnar | 6053ee3 | 2006-01-09 15:59:19 -0800 | [diff] [blame] | 31 | |
Ingo Molnar | 6053ee3 | 2006-01-09 15:59:19 -0800 | [diff] [blame] | 32 | #ifdef CONFIG_DEBUG_MUTEXES |
| 33 | # include "mutex-debug.h" |
Ingo Molnar | 6053ee3 | 2006-01-09 15:59:19 -0800 | [diff] [blame] | 34 | #else |
| 35 | # include "mutex.h" |
Ingo Molnar | 6053ee3 | 2006-01-09 15:59:19 -0800 | [diff] [blame] | 36 | #endif |
| 37 | |
Ingo Molnar | ef5d470 | 2006-07-03 00:24:55 -0700 | [diff] [blame] | 38 | void |
| 39 | __mutex_init(struct mutex *lock, const char *name, struct lock_class_key *key) |
Ingo Molnar | 6053ee3 | 2006-01-09 15:59:19 -0800 | [diff] [blame] | 40 | { |
Peter Zijlstra | 3ca0ff5 | 2016-08-23 13:36:04 +0200 | [diff] [blame] | 41 | atomic_long_set(&lock->owner, 0); |
Ingo Molnar | 6053ee3 | 2006-01-09 15:59:19 -0800 | [diff] [blame] | 42 | spin_lock_init(&lock->wait_lock); |
| 43 | INIT_LIST_HEAD(&lock->wait_list); |
Waiman Long | 2bd2c92 | 2013-04-17 15:23:13 -0400 | [diff] [blame] | 44 | #ifdef CONFIG_MUTEX_SPIN_ON_OWNER |
Jason Low | 4d9d951 | 2014-07-14 10:27:50 -0700 | [diff] [blame] | 45 | osq_lock_init(&lock->osq); |
Waiman Long | 2bd2c92 | 2013-04-17 15:23:13 -0400 | [diff] [blame] | 46 | #endif |
Ingo Molnar | 6053ee3 | 2006-01-09 15:59:19 -0800 | [diff] [blame] | 47 | |
Ingo Molnar | ef5d470 | 2006-07-03 00:24:55 -0700 | [diff] [blame] | 48 | debug_mutex_init(lock, name, key); |
Ingo Molnar | 6053ee3 | 2006-01-09 15:59:19 -0800 | [diff] [blame] | 49 | } |
Ingo Molnar | 6053ee3 | 2006-01-09 15:59:19 -0800 | [diff] [blame] | 50 | EXPORT_SYMBOL(__mutex_init); |
| 51 | |
Peter Zijlstra | 3ca0ff5 | 2016-08-23 13:36:04 +0200 | [diff] [blame] | 52 | /* |
| 53 | * @owner: contains: 'struct task_struct *' to the current lock owner, |
| 54 | * NULL means not owned. Since task_struct pointers are aligned at |
Peter Zijlstra | e274795 | 2017-01-11 14:17:48 +0100 | [diff] [blame] | 55 | * at least L1_CACHE_BYTES, we have low bits to store extra state. |
Peter Zijlstra | 3ca0ff5 | 2016-08-23 13:36:04 +0200 | [diff] [blame] | 56 | * |
| 57 | * Bit0 indicates a non-empty waiter list; unlock must issue a wakeup. |
Peter Zijlstra | 9d659ae | 2016-08-23 14:40:16 +0200 | [diff] [blame] | 58 | * Bit1 indicates unlock needs to hand the lock to the top-waiter |
Peter Zijlstra | e274795 | 2017-01-11 14:17:48 +0100 | [diff] [blame] | 59 | * Bit2 indicates handoff has been done and we're waiting for pickup. |
Peter Zijlstra | 3ca0ff5 | 2016-08-23 13:36:04 +0200 | [diff] [blame] | 60 | */ |
| 61 | #define MUTEX_FLAG_WAITERS 0x01 |
Peter Zijlstra | 9d659ae | 2016-08-23 14:40:16 +0200 | [diff] [blame] | 62 | #define MUTEX_FLAG_HANDOFF 0x02 |
Peter Zijlstra | e274795 | 2017-01-11 14:17:48 +0100 | [diff] [blame] | 63 | #define MUTEX_FLAG_PICKUP 0x04 |
Peter Zijlstra | 3ca0ff5 | 2016-08-23 13:36:04 +0200 | [diff] [blame] | 64 | |
Peter Zijlstra | e274795 | 2017-01-11 14:17:48 +0100 | [diff] [blame] | 65 | #define MUTEX_FLAGS 0x07 |
Peter Zijlstra | 3ca0ff5 | 2016-08-23 13:36:04 +0200 | [diff] [blame] | 66 | |
| 67 | static inline struct task_struct *__owner_task(unsigned long owner) |
| 68 | { |
| 69 | return (struct task_struct *)(owner & ~MUTEX_FLAGS); |
| 70 | } |
| 71 | |
| 72 | static inline unsigned long __owner_flags(unsigned long owner) |
| 73 | { |
| 74 | return owner & MUTEX_FLAGS; |
| 75 | } |
| 76 | |
| 77 | /* |
Peter Zijlstra | e274795 | 2017-01-11 14:17:48 +0100 | [diff] [blame] | 78 | * Trylock variant that retuns the owning task on failure. |
Peter Zijlstra | 3ca0ff5 | 2016-08-23 13:36:04 +0200 | [diff] [blame] | 79 | */ |
Peter Zijlstra | e274795 | 2017-01-11 14:17:48 +0100 | [diff] [blame] | 80 | static inline struct task_struct *__mutex_trylock_or_owner(struct mutex *lock) |
Peter Zijlstra | 3ca0ff5 | 2016-08-23 13:36:04 +0200 | [diff] [blame] | 81 | { |
| 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 Zijlstra | 9d659ae | 2016-08-23 14:40:16 +0200 | [diff] [blame] | 86 | unsigned long old, flags = __owner_flags(owner); |
Peter Zijlstra | e274795 | 2017-01-11 14:17:48 +0100 | [diff] [blame] | 87 | unsigned long task = owner & ~MUTEX_FLAGS; |
Peter Zijlstra | 3ca0ff5 | 2016-08-23 13:36:04 +0200 | [diff] [blame] | 88 | |
Peter Zijlstra | e274795 | 2017-01-11 14:17:48 +0100 | [diff] [blame] | 89 | if (task) { |
| 90 | if (likely(task != curr)) |
| 91 | break; |
Peter Zijlstra | 9d659ae | 2016-08-23 14:40:16 +0200 | [diff] [blame] | 92 | |
Peter Zijlstra | e274795 | 2017-01-11 14:17:48 +0100 | [diff] [blame] | 93 | 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 Zijlstra | 9d659ae | 2016-08-23 14:40:16 +0200 | [diff] [blame] | 101 | } |
Peter Zijlstra | 3ca0ff5 | 2016-08-23 13:36:04 +0200 | [diff] [blame] | 102 | |
Peter Zijlstra | 9d659ae | 2016-08-23 14:40:16 +0200 | [diff] [blame] | 103 | /* |
| 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 Zijlstra | e274795 | 2017-01-11 14:17:48 +0100 | [diff] [blame] | 108 | flags &= ~MUTEX_FLAG_HANDOFF; |
Peter Zijlstra | 9d659ae | 2016-08-23 14:40:16 +0200 | [diff] [blame] | 109 | |
| 110 | old = atomic_long_cmpxchg_acquire(&lock->owner, owner, curr | flags); |
Peter Zijlstra | 3ca0ff5 | 2016-08-23 13:36:04 +0200 | [diff] [blame] | 111 | if (old == owner) |
Peter Zijlstra | e274795 | 2017-01-11 14:17:48 +0100 | [diff] [blame] | 112 | return NULL; |
Peter Zijlstra | 3ca0ff5 | 2016-08-23 13:36:04 +0200 | [diff] [blame] | 113 | |
| 114 | owner = old; |
| 115 | } |
Peter Zijlstra | e274795 | 2017-01-11 14:17:48 +0100 | [diff] [blame] | 116 | |
| 117 | return __owner_task(owner); |
| 118 | } |
| 119 | |
| 120 | /* |
| 121 | * Actual trylock that will work on any unlocked state. |
| 122 | */ |
| 123 | static inline bool __mutex_trylock(struct mutex *lock) |
| 124 | { |
| 125 | return !__mutex_trylock_or_owner(lock); |
Peter Zijlstra | 3ca0ff5 | 2016-08-23 13:36:04 +0200 | [diff] [blame] | 126 | } |
| 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 | */ |
| 139 | static __always_inline bool __mutex_trylock_fast(struct mutex *lock) |
| 140 | { |
| 141 | unsigned long curr = (unsigned long)current; |
Peter Zijlstra | c427f69 | 2018-04-05 11:05:35 +0200 | [diff] [blame] | 142 | unsigned long zero = 0UL; |
Peter Zijlstra | 3ca0ff5 | 2016-08-23 13:36:04 +0200 | [diff] [blame] | 143 | |
Peter Zijlstra | c427f69 | 2018-04-05 11:05:35 +0200 | [diff] [blame] | 144 | if (atomic_long_try_cmpxchg_acquire(&lock->owner, &zero, curr)) |
Peter Zijlstra | 3ca0ff5 | 2016-08-23 13:36:04 +0200 | [diff] [blame] | 145 | return true; |
| 146 | |
| 147 | return false; |
| 148 | } |
| 149 | |
| 150 | static __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 | |
| 161 | static inline void __mutex_set_flag(struct mutex *lock, unsigned long flag) |
| 162 | { |
| 163 | atomic_long_or(flag, &lock->owner); |
| 164 | } |
| 165 | |
| 166 | static inline void __mutex_clear_flag(struct mutex *lock, unsigned long flag) |
| 167 | { |
| 168 | atomic_long_andnot(flag, &lock->owner); |
| 169 | } |
| 170 | |
Peter Zijlstra | 9d659ae | 2016-08-23 14:40:16 +0200 | [diff] [blame] | 171 | static 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 | /* |
Thomas Hellstrom | 08295b3 | 2018-06-15 10:17:38 +0200 | [diff] [blame] | 177 | * Add @waiter to a given location in the lock wait_list and set the |
| 178 | * FLAG_WAITERS flag if it's the first waiter. |
| 179 | */ |
| 180 | static void __sched |
| 181 | __mutex_add_waiter(struct mutex *lock, struct mutex_waiter *waiter, |
| 182 | struct list_head *list) |
| 183 | { |
| 184 | debug_mutex_add_waiter(lock, waiter, current); |
| 185 | |
| 186 | list_add_tail(&waiter->list, list); |
| 187 | if (__mutex_waiter_is_first(lock, waiter)) |
| 188 | __mutex_set_flag(lock, MUTEX_FLAG_WAITERS); |
| 189 | } |
| 190 | |
| 191 | /* |
Peter Zijlstra | 9d659ae | 2016-08-23 14:40:16 +0200 | [diff] [blame] | 192 | * Give up ownership to a specific task, when @task = NULL, this is equivalent |
Peter Zijlstra | e274795 | 2017-01-11 14:17:48 +0100 | [diff] [blame] | 193 | * to a regular unlock. Sets PICKUP on a handoff, clears HANDOF, preserves |
| 194 | * WAITERS. Provides RELEASE semantics like a regular unlock, the |
| 195 | * __mutex_trylock() provides a matching ACQUIRE semantics for the handoff. |
Peter Zijlstra | 9d659ae | 2016-08-23 14:40:16 +0200 | [diff] [blame] | 196 | */ |
| 197 | static void __mutex_handoff(struct mutex *lock, struct task_struct *task) |
| 198 | { |
| 199 | unsigned long owner = atomic_long_read(&lock->owner); |
| 200 | |
| 201 | for (;;) { |
| 202 | unsigned long old, new; |
| 203 | |
| 204 | #ifdef CONFIG_DEBUG_MUTEXES |
| 205 | DEBUG_LOCKS_WARN_ON(__owner_task(owner) != current); |
Peter Zijlstra | e274795 | 2017-01-11 14:17:48 +0100 | [diff] [blame] | 206 | DEBUG_LOCKS_WARN_ON(owner & MUTEX_FLAG_PICKUP); |
Peter Zijlstra | 9d659ae | 2016-08-23 14:40:16 +0200 | [diff] [blame] | 207 | #endif |
| 208 | |
| 209 | new = (owner & MUTEX_FLAG_WAITERS); |
| 210 | new |= (unsigned long)task; |
Peter Zijlstra | e274795 | 2017-01-11 14:17:48 +0100 | [diff] [blame] | 211 | if (task) |
| 212 | new |= MUTEX_FLAG_PICKUP; |
Peter Zijlstra | 9d659ae | 2016-08-23 14:40:16 +0200 | [diff] [blame] | 213 | |
| 214 | old = atomic_long_cmpxchg_release(&lock->owner, owner, new); |
| 215 | if (old == owner) |
| 216 | break; |
| 217 | |
| 218 | owner = old; |
| 219 | } |
| 220 | } |
| 221 | |
Peter Zijlstra | e4564f7 | 2007-10-11 22:11:12 +0200 | [diff] [blame] | 222 | #ifndef CONFIG_DEBUG_LOCK_ALLOC |
Ingo Molnar | 6053ee3 | 2006-01-09 15:59:19 -0800 | [diff] [blame] | 223 | /* |
| 224 | * We split the mutex lock/unlock logic into separate fastpath and |
| 225 | * slowpath functions, to reduce the register pressure on the fastpath. |
| 226 | * We also put the fastpath first in the kernel image, to make sure the |
| 227 | * branch is predicted by the CPU as default-untaken. |
| 228 | */ |
Peter Zijlstra | 3ca0ff5 | 2016-08-23 13:36:04 +0200 | [diff] [blame] | 229 | static void __sched __mutex_lock_slowpath(struct mutex *lock); |
Ingo Molnar | 6053ee3 | 2006-01-09 15:59:19 -0800 | [diff] [blame] | 230 | |
Randy Dunlap | ef5dc12 | 2010-09-02 15:48:16 -0700 | [diff] [blame] | 231 | /** |
Ingo Molnar | 6053ee3 | 2006-01-09 15:59:19 -0800 | [diff] [blame] | 232 | * mutex_lock - acquire the mutex |
| 233 | * @lock: the mutex to be acquired |
| 234 | * |
| 235 | * Lock the mutex exclusively for this task. If the mutex is not |
| 236 | * available right now, it will sleep until it can get it. |
| 237 | * |
| 238 | * The mutex must later on be released by the same task that |
| 239 | * acquired it. Recursive locking is not allowed. The task |
| 240 | * may not exit without first unlocking the mutex. Also, kernel |
Sharon Dvir | 139b6fd | 2015-02-01 23:47:32 +0200 | [diff] [blame] | 241 | * memory where the mutex resides must not be freed with |
Ingo Molnar | 6053ee3 | 2006-01-09 15:59:19 -0800 | [diff] [blame] | 242 | * the mutex still locked. The mutex must first be initialized |
| 243 | * (or statically defined) before it can be locked. memset()-ing |
| 244 | * the mutex to 0 is not allowed. |
| 245 | * |
Mauro Carvalho Chehab | 7b4ff1a | 2017-05-11 10:17:45 -0300 | [diff] [blame] | 246 | * (The CONFIG_DEBUG_MUTEXES .config option turns on debugging |
| 247 | * checks that will enforce the restrictions and will also do |
| 248 | * deadlock debugging) |
Ingo Molnar | 6053ee3 | 2006-01-09 15:59:19 -0800 | [diff] [blame] | 249 | * |
| 250 | * This function is similar to (but not equivalent to) down(). |
| 251 | */ |
H. Peter Anvin | b09d250 | 2009-04-01 17:21:56 -0700 | [diff] [blame] | 252 | void __sched mutex_lock(struct mutex *lock) |
Ingo Molnar | 6053ee3 | 2006-01-09 15:59:19 -0800 | [diff] [blame] | 253 | { |
Ingo Molnar | c544bdb | 2006-01-10 22:10:36 +0100 | [diff] [blame] | 254 | might_sleep(); |
Ingo Molnar | 6053ee3 | 2006-01-09 15:59:19 -0800 | [diff] [blame] | 255 | |
Peter Zijlstra | 3ca0ff5 | 2016-08-23 13:36:04 +0200 | [diff] [blame] | 256 | if (!__mutex_trylock_fast(lock)) |
| 257 | __mutex_lock_slowpath(lock); |
| 258 | } |
Ingo Molnar | 6053ee3 | 2006-01-09 15:59:19 -0800 | [diff] [blame] | 259 | EXPORT_SYMBOL(mutex_lock); |
Peter Zijlstra | e4564f7 | 2007-10-11 22:11:12 +0200 | [diff] [blame] | 260 | #endif |
Ingo Molnar | 6053ee3 | 2006-01-09 15:59:19 -0800 | [diff] [blame] | 261 | |
Peter Ziljstra | 55f036c | 2018-06-15 10:07:12 +0200 | [diff] [blame] | 262 | /* |
| 263 | * Wait-Die: |
| 264 | * The newer transactions are killed when: |
| 265 | * It (the new transaction) makes a request for a lock being held |
| 266 | * by an older transaction. |
Thomas Hellstrom | 08295b3 | 2018-06-15 10:17:38 +0200 | [diff] [blame] | 267 | * |
| 268 | * Wound-Wait: |
| 269 | * The newer transactions are wounded when: |
| 270 | * An older transaction makes a request for a lock being held by |
| 271 | * the newer transaction. |
Peter Ziljstra | 55f036c | 2018-06-15 10:07:12 +0200 | [diff] [blame] | 272 | */ |
| 273 | |
| 274 | /* |
| 275 | * Associate the ww_mutex @ww with the context @ww_ctx under which we acquired |
| 276 | * it. |
| 277 | */ |
Peter Zijlstra | 427b182 | 2016-12-23 10:36:00 +0100 | [diff] [blame] | 278 | static __always_inline void |
| 279 | ww_mutex_lock_acquired(struct ww_mutex *ww, struct ww_acquire_ctx *ww_ctx) |
Davidlohr Bueso | 7691651 | 2014-07-30 13:41:53 -0700 | [diff] [blame] | 280 | { |
| 281 | #ifdef CONFIG_DEBUG_MUTEXES |
| 282 | /* |
| 283 | * If this WARN_ON triggers, you used ww_mutex_lock to acquire, |
| 284 | * but released with a normal mutex_unlock in this call. |
| 285 | * |
| 286 | * This should never happen, always use ww_mutex_unlock. |
| 287 | */ |
| 288 | DEBUG_LOCKS_WARN_ON(ww->ctx); |
| 289 | |
| 290 | /* |
| 291 | * Not quite done after calling ww_acquire_done() ? |
| 292 | */ |
| 293 | DEBUG_LOCKS_WARN_ON(ww_ctx->done_acquire); |
| 294 | |
| 295 | if (ww_ctx->contending_lock) { |
| 296 | /* |
| 297 | * After -EDEADLK you tried to |
| 298 | * acquire a different ww_mutex? Bad! |
| 299 | */ |
| 300 | DEBUG_LOCKS_WARN_ON(ww_ctx->contending_lock != ww); |
| 301 | |
| 302 | /* |
| 303 | * You called ww_mutex_lock after receiving -EDEADLK, |
| 304 | * but 'forgot' to unlock everything else first? |
| 305 | */ |
| 306 | DEBUG_LOCKS_WARN_ON(ww_ctx->acquired > 0); |
| 307 | ww_ctx->contending_lock = NULL; |
| 308 | } |
| 309 | |
| 310 | /* |
| 311 | * Naughty, using a different class will lead to undefined behavior! |
| 312 | */ |
| 313 | DEBUG_LOCKS_WARN_ON(ww_ctx->ww_class != ww->ww_class); |
| 314 | #endif |
| 315 | ww_ctx->acquired++; |
Peter Ziljstra | 55f036c | 2018-06-15 10:07:12 +0200 | [diff] [blame] | 316 | ww->ctx = ww_ctx; |
Nicolai Hähnle | 3822da3 | 2016-12-21 19:46:31 +0100 | [diff] [blame] | 317 | } |
| 318 | |
Davidlohr Bueso | 7691651 | 2014-07-30 13:41:53 -0700 | [diff] [blame] | 319 | /* |
Peter Ziljstra | 55f036c | 2018-06-15 10:07:12 +0200 | [diff] [blame] | 320 | * Determine if context @a is 'after' context @b. IOW, @a is a younger |
| 321 | * transaction than @b and depending on algorithm either needs to wait for |
| 322 | * @b or die. |
| 323 | */ |
| 324 | static inline bool __sched |
| 325 | __ww_ctx_stamp_after(struct ww_acquire_ctx *a, struct ww_acquire_ctx *b) |
| 326 | { |
| 327 | |
| 328 | return (signed long)(a->stamp - b->stamp) > 0; |
| 329 | } |
| 330 | |
| 331 | /* |
| 332 | * Wait-Die; wake a younger waiter context (when locks held) such that it can |
| 333 | * die. |
Nicolai Hähnle | 659cf9f | 2016-12-21 19:46:36 +0100 | [diff] [blame] | 334 | * |
Peter Ziljstra | 55f036c | 2018-06-15 10:07:12 +0200 | [diff] [blame] | 335 | * Among waiters with context, only the first one can have other locks acquired |
| 336 | * already (ctx->acquired > 0), because __ww_mutex_add_waiter() and |
| 337 | * __ww_mutex_check_kill() wake any but the earliest context. |
| 338 | */ |
| 339 | static bool __sched |
| 340 | __ww_mutex_die(struct mutex *lock, struct mutex_waiter *waiter, |
| 341 | struct ww_acquire_ctx *ww_ctx) |
| 342 | { |
Thomas Hellstrom | 08295b3 | 2018-06-15 10:17:38 +0200 | [diff] [blame] | 343 | if (!ww_ctx->is_wait_die) |
| 344 | return false; |
| 345 | |
Peter Ziljstra | 55f036c | 2018-06-15 10:07:12 +0200 | [diff] [blame] | 346 | if (waiter->ww_ctx->acquired > 0 && |
| 347 | __ww_ctx_stamp_after(waiter->ww_ctx, ww_ctx)) { |
| 348 | debug_mutex_wake_waiter(lock, waiter); |
| 349 | wake_up_process(waiter->task); |
| 350 | } |
| 351 | |
| 352 | return true; |
| 353 | } |
| 354 | |
| 355 | /* |
Thomas Hellstrom | 08295b3 | 2018-06-15 10:17:38 +0200 | [diff] [blame] | 356 | * Wound-Wait; wound a younger @hold_ctx if it holds the lock. |
| 357 | * |
| 358 | * Wound the lock holder if there are waiters with older transactions than |
| 359 | * the lock holders. Even if multiple waiters may wound the lock holder, |
| 360 | * it's sufficient that only one does. |
| 361 | */ |
| 362 | static bool __ww_mutex_wound(struct mutex *lock, |
| 363 | struct ww_acquire_ctx *ww_ctx, |
| 364 | struct ww_acquire_ctx *hold_ctx) |
| 365 | { |
| 366 | struct task_struct *owner = __mutex_owner(lock); |
| 367 | |
| 368 | lockdep_assert_held(&lock->wait_lock); |
| 369 | |
| 370 | /* |
| 371 | * Possible through __ww_mutex_add_waiter() when we race with |
| 372 | * ww_mutex_set_context_fastpath(). In that case we'll get here again |
| 373 | * through __ww_mutex_check_waiters(). |
| 374 | */ |
| 375 | if (!hold_ctx) |
| 376 | return false; |
| 377 | |
| 378 | /* |
| 379 | * Can have !owner because of __mutex_unlock_slowpath(), but if owner, |
| 380 | * it cannot go away because we'll have FLAG_WAITERS set and hold |
| 381 | * wait_lock. |
| 382 | */ |
| 383 | if (!owner) |
| 384 | return false; |
| 385 | |
| 386 | if (ww_ctx->acquired > 0 && __ww_ctx_stamp_after(hold_ctx, ww_ctx)) { |
| 387 | hold_ctx->wounded = 1; |
| 388 | |
| 389 | /* |
| 390 | * wake_up_process() paired with set_current_state() |
| 391 | * inserts sufficient barriers to make sure @owner either sees |
| 392 | * it's wounded in __ww_mutex_lock_check_stamp() or has a |
| 393 | * wakeup pending to re-read the wounded state. |
| 394 | */ |
| 395 | if (owner != current) |
| 396 | wake_up_process(owner); |
| 397 | |
| 398 | return true; |
| 399 | } |
| 400 | |
| 401 | return false; |
| 402 | } |
| 403 | |
| 404 | /* |
Peter Ziljstra | 55f036c | 2018-06-15 10:07:12 +0200 | [diff] [blame] | 405 | * We just acquired @lock under @ww_ctx, if there are later contexts waiting |
Thomas Hellstrom | 08295b3 | 2018-06-15 10:17:38 +0200 | [diff] [blame] | 406 | * behind us on the wait-list, check if they need to die, or wound us. |
Peter Ziljstra | 55f036c | 2018-06-15 10:07:12 +0200 | [diff] [blame] | 407 | * |
| 408 | * See __ww_mutex_add_waiter() for the list-order construction; basically the |
| 409 | * list is ordered by stamp, smallest (oldest) first. |
Nicolai Hähnle | 659cf9f | 2016-12-21 19:46:36 +0100 | [diff] [blame] | 410 | * |
Thomas Hellstrom | 08295b3 | 2018-06-15 10:17:38 +0200 | [diff] [blame] | 411 | * This relies on never mixing wait-die/wound-wait on the same wait-list; |
| 412 | * which is currently ensured by that being a ww_class property. |
| 413 | * |
Nicolai Hähnle | 659cf9f | 2016-12-21 19:46:36 +0100 | [diff] [blame] | 414 | * The current task must not be on the wait list. |
| 415 | */ |
| 416 | static void __sched |
Peter Ziljstra | 55f036c | 2018-06-15 10:07:12 +0200 | [diff] [blame] | 417 | __ww_mutex_check_waiters(struct mutex *lock, struct ww_acquire_ctx *ww_ctx) |
Nicolai Hähnle | 659cf9f | 2016-12-21 19:46:36 +0100 | [diff] [blame] | 418 | { |
| 419 | struct mutex_waiter *cur; |
| 420 | |
| 421 | lockdep_assert_held(&lock->wait_lock); |
| 422 | |
| 423 | list_for_each_entry(cur, &lock->wait_list, list) { |
| 424 | if (!cur->ww_ctx) |
| 425 | continue; |
| 426 | |
Thomas Hellstrom | 08295b3 | 2018-06-15 10:17:38 +0200 | [diff] [blame] | 427 | if (__ww_mutex_die(lock, cur, ww_ctx) || |
| 428 | __ww_mutex_wound(lock, cur->ww_ctx, ww_ctx)) |
Peter Ziljstra | 55f036c | 2018-06-15 10:07:12 +0200 | [diff] [blame] | 429 | break; |
Nicolai Hähnle | 659cf9f | 2016-12-21 19:46:36 +0100 | [diff] [blame] | 430 | } |
| 431 | } |
| 432 | |
Davidlohr Bueso | 7691651 | 2014-07-30 13:41:53 -0700 | [diff] [blame] | 433 | /* |
Peter Ziljstra | 55f036c | 2018-06-15 10:07:12 +0200 | [diff] [blame] | 434 | * After acquiring lock with fastpath, where we do not hold wait_lock, set ctx |
| 435 | * and wake up any waiters so they can recheck. |
Davidlohr Bueso | 7691651 | 2014-07-30 13:41:53 -0700 | [diff] [blame] | 436 | */ |
| 437 | static __always_inline void |
Peter Zijlstra | 427b182 | 2016-12-23 10:36:00 +0100 | [diff] [blame] | 438 | ww_mutex_set_context_fastpath(struct ww_mutex *lock, struct ww_acquire_ctx *ctx) |
Davidlohr Bueso | 7691651 | 2014-07-30 13:41:53 -0700 | [diff] [blame] | 439 | { |
Davidlohr Bueso | 7691651 | 2014-07-30 13:41:53 -0700 | [diff] [blame] | 440 | ww_mutex_lock_acquired(lock, ctx); |
| 441 | |
Davidlohr Bueso | 7691651 | 2014-07-30 13:41:53 -0700 | [diff] [blame] | 442 | /* |
| 443 | * The lock->ctx update should be visible on all cores before |
Peter Ziljstra | 55f036c | 2018-06-15 10:07:12 +0200 | [diff] [blame] | 444 | * the WAITERS check is done, otherwise contended waiters might be |
Davidlohr Bueso | 7691651 | 2014-07-30 13:41:53 -0700 | [diff] [blame] | 445 | * missed. The contended waiters will either see ww_ctx == NULL |
| 446 | * and keep spinning, or it will acquire wait_lock, add itself |
| 447 | * to waiter list and sleep. |
| 448 | */ |
Thomas Hellstrom | 08295b3 | 2018-06-15 10:17:38 +0200 | [diff] [blame] | 449 | smp_mb(); /* See comments above and below. */ |
Davidlohr Bueso | 7691651 | 2014-07-30 13:41:53 -0700 | [diff] [blame] | 450 | |
| 451 | /* |
Thomas Hellstrom | 08295b3 | 2018-06-15 10:17:38 +0200 | [diff] [blame] | 452 | * [W] ww->ctx = ctx [W] MUTEX_FLAG_WAITERS |
| 453 | * MB MB |
| 454 | * [R] MUTEX_FLAG_WAITERS [R] ww->ctx |
| 455 | * |
| 456 | * The memory barrier above pairs with the memory barrier in |
| 457 | * __ww_mutex_add_waiter() and makes sure we either observe ww->ctx |
| 458 | * and/or !empty list. |
Davidlohr Bueso | 7691651 | 2014-07-30 13:41:53 -0700 | [diff] [blame] | 459 | */ |
Peter Zijlstra | 3ca0ff5 | 2016-08-23 13:36:04 +0200 | [diff] [blame] | 460 | if (likely(!(atomic_long_read(&lock->base.owner) & MUTEX_FLAG_WAITERS))) |
Davidlohr Bueso | 7691651 | 2014-07-30 13:41:53 -0700 | [diff] [blame] | 461 | return; |
| 462 | |
| 463 | /* |
Peter Ziljstra | 55f036c | 2018-06-15 10:07:12 +0200 | [diff] [blame] | 464 | * Uh oh, we raced in fastpath, check if any of the waiters need to |
Thomas Hellstrom | 08295b3 | 2018-06-15 10:17:38 +0200 | [diff] [blame] | 465 | * die or wound us. |
Davidlohr Bueso | 7691651 | 2014-07-30 13:41:53 -0700 | [diff] [blame] | 466 | */ |
Peter Zijlstra | b9c16a0 | 2017-01-17 16:06:09 +0100 | [diff] [blame] | 467 | spin_lock(&lock->base.wait_lock); |
Peter Ziljstra | 55f036c | 2018-06-15 10:07:12 +0200 | [diff] [blame] | 468 | __ww_mutex_check_waiters(&lock->base, ctx); |
Peter Zijlstra | b9c16a0 | 2017-01-17 16:06:09 +0100 | [diff] [blame] | 469 | spin_unlock(&lock->base.wait_lock); |
Davidlohr Bueso | 7691651 | 2014-07-30 13:41:53 -0700 | [diff] [blame] | 470 | } |
| 471 | |
Waiman Long | 41fcb9f | 2013-04-17 15:23:11 -0400 | [diff] [blame] | 472 | #ifdef CONFIG_MUTEX_SPIN_ON_OWNER |
Nicolai Hähnle | c516df9 | 2016-12-21 19:46:38 +0100 | [diff] [blame] | 473 | |
| 474 | static inline |
| 475 | bool ww_mutex_spin_on_owner(struct mutex *lock, struct ww_acquire_ctx *ww_ctx, |
| 476 | struct mutex_waiter *waiter) |
| 477 | { |
| 478 | struct ww_mutex *ww; |
| 479 | |
| 480 | ww = container_of(lock, struct ww_mutex, base); |
| 481 | |
| 482 | /* |
| 483 | * If ww->ctx is set the contents are undefined, only |
| 484 | * by acquiring wait_lock there is a guarantee that |
| 485 | * they are not invalid when reading. |
| 486 | * |
| 487 | * As such, when deadlock detection needs to be |
| 488 | * performed the optimistic spinning cannot be done. |
| 489 | * |
| 490 | * Check this in every inner iteration because we may |
| 491 | * be racing against another thread's ww_mutex_lock. |
| 492 | */ |
| 493 | if (ww_ctx->acquired > 0 && READ_ONCE(ww->ctx)) |
| 494 | return false; |
| 495 | |
| 496 | /* |
| 497 | * If we aren't on the wait list yet, cancel the spin |
| 498 | * if there are waiters. We want to avoid stealing the |
| 499 | * lock from a waiter with an earlier stamp, since the |
| 500 | * other thread may already own a lock that we also |
| 501 | * need. |
| 502 | */ |
| 503 | if (!waiter && (atomic_long_read(&lock->owner) & MUTEX_FLAG_WAITERS)) |
| 504 | return false; |
| 505 | |
| 506 | /* |
| 507 | * Similarly, stop spinning if we are no longer the |
| 508 | * first waiter. |
| 509 | */ |
| 510 | if (waiter && !__mutex_waiter_is_first(lock, waiter)) |
| 511 | return false; |
| 512 | |
| 513 | return true; |
| 514 | } |
| 515 | |
Waiman Long | 41fcb9f | 2013-04-17 15:23:11 -0400 | [diff] [blame] | 516 | /* |
Nicolai Hähnle | 25f13b4 | 2016-12-21 19:46:37 +0100 | [diff] [blame] | 517 | * Look out! "owner" is an entirely speculative pointer access and not |
| 518 | * reliable. |
| 519 | * |
| 520 | * "noinline" so that this function shows up on perf profiles. |
Waiman Long | 41fcb9f | 2013-04-17 15:23:11 -0400 | [diff] [blame] | 521 | */ |
| 522 | static noinline |
Nicolai Hähnle | 25f13b4 | 2016-12-21 19:46:37 +0100 | [diff] [blame] | 523 | bool mutex_spin_on_owner(struct mutex *lock, struct task_struct *owner, |
Nicolai Hähnle | c516df9 | 2016-12-21 19:46:38 +0100 | [diff] [blame] | 524 | struct ww_acquire_ctx *ww_ctx, struct mutex_waiter *waiter) |
Waiman Long | 41fcb9f | 2013-04-17 15:23:11 -0400 | [diff] [blame] | 525 | { |
Jason Low | 01ac33c | 2015-04-08 12:39:19 -0700 | [diff] [blame] | 526 | bool ret = true; |
Jason Low | be1f7bf | 2015-02-02 13:59:27 -0800 | [diff] [blame] | 527 | |
Waiman Long | 41fcb9f | 2013-04-17 15:23:11 -0400 | [diff] [blame] | 528 | rcu_read_lock(); |
Peter Zijlstra | 3ca0ff5 | 2016-08-23 13:36:04 +0200 | [diff] [blame] | 529 | while (__mutex_owner(lock) == owner) { |
Jason Low | be1f7bf | 2015-02-02 13:59:27 -0800 | [diff] [blame] | 530 | /* |
| 531 | * Ensure we emit the owner->on_cpu, dereference _after_ |
Jason Low | 01ac33c | 2015-04-08 12:39:19 -0700 | [diff] [blame] | 532 | * checking lock->owner still matches owner. If that fails, |
| 533 | * owner might point to freed memory. If it still matches, |
Jason Low | be1f7bf | 2015-02-02 13:59:27 -0800 | [diff] [blame] | 534 | * the rcu_read_lock() ensures the memory stays valid. |
| 535 | */ |
| 536 | barrier(); |
| 537 | |
Pan Xinhui | 05ffc95 | 2016-11-02 05:08:30 -0400 | [diff] [blame] | 538 | /* |
| 539 | * Use vcpu_is_preempted to detect lock holder preemption issue. |
| 540 | */ |
| 541 | if (!owner->on_cpu || need_resched() || |
| 542 | vcpu_is_preempted(task_cpu(owner))) { |
Jason Low | be1f7bf | 2015-02-02 13:59:27 -0800 | [diff] [blame] | 543 | ret = false; |
| 544 | break; |
| 545 | } |
Waiman Long | 41fcb9f | 2013-04-17 15:23:11 -0400 | [diff] [blame] | 546 | |
Nicolai Hähnle | c516df9 | 2016-12-21 19:46:38 +0100 | [diff] [blame] | 547 | if (ww_ctx && !ww_mutex_spin_on_owner(lock, ww_ctx, waiter)) { |
| 548 | ret = false; |
| 549 | break; |
Nicolai Hähnle | 25f13b4 | 2016-12-21 19:46:37 +0100 | [diff] [blame] | 550 | } |
| 551 | |
Christian Borntraeger | f2f09a4 | 2016-10-25 11:03:14 +0200 | [diff] [blame] | 552 | cpu_relax(); |
Waiman Long | 41fcb9f | 2013-04-17 15:23:11 -0400 | [diff] [blame] | 553 | } |
| 554 | rcu_read_unlock(); |
| 555 | |
Jason Low | be1f7bf | 2015-02-02 13:59:27 -0800 | [diff] [blame] | 556 | return ret; |
Waiman Long | 41fcb9f | 2013-04-17 15:23:11 -0400 | [diff] [blame] | 557 | } |
Waiman Long | 2bd2c92 | 2013-04-17 15:23:13 -0400 | [diff] [blame] | 558 | |
| 559 | /* |
| 560 | * Initial check for entering the mutex spinning loop |
| 561 | */ |
| 562 | static inline int mutex_can_spin_on_owner(struct mutex *lock) |
| 563 | { |
Peter Zijlstra | 1e40c2e | 2013-07-19 20:31:01 +0200 | [diff] [blame] | 564 | struct task_struct *owner; |
Waiman Long | 2bd2c92 | 2013-04-17 15:23:13 -0400 | [diff] [blame] | 565 | int retval = 1; |
| 566 | |
Jason Low | 46af29e | 2014-01-28 11:13:12 -0800 | [diff] [blame] | 567 | if (need_resched()) |
| 568 | return 0; |
| 569 | |
Waiman Long | 2bd2c92 | 2013-04-17 15:23:13 -0400 | [diff] [blame] | 570 | rcu_read_lock(); |
Peter Zijlstra | 3ca0ff5 | 2016-08-23 13:36:04 +0200 | [diff] [blame] | 571 | owner = __mutex_owner(lock); |
Pan Xinhui | 05ffc95 | 2016-11-02 05:08:30 -0400 | [diff] [blame] | 572 | |
| 573 | /* |
| 574 | * As lock holder preemption issue, we both skip spinning if task is not |
| 575 | * on cpu or its cpu is preempted |
| 576 | */ |
Peter Zijlstra | 1e40c2e | 2013-07-19 20:31:01 +0200 | [diff] [blame] | 577 | if (owner) |
Pan Xinhui | 05ffc95 | 2016-11-02 05:08:30 -0400 | [diff] [blame] | 578 | retval = owner->on_cpu && !vcpu_is_preempted(task_cpu(owner)); |
Waiman Long | 2bd2c92 | 2013-04-17 15:23:13 -0400 | [diff] [blame] | 579 | rcu_read_unlock(); |
Peter Zijlstra | 3ca0ff5 | 2016-08-23 13:36:04 +0200 | [diff] [blame] | 580 | |
Waiman Long | 2bd2c92 | 2013-04-17 15:23:13 -0400 | [diff] [blame] | 581 | /* |
Peter Zijlstra | 3ca0ff5 | 2016-08-23 13:36:04 +0200 | [diff] [blame] | 582 | * If lock->owner is not set, the mutex has been released. Return true |
| 583 | * such that we'll trylock in the spin path, which is a faster option |
| 584 | * than the blocking slow path. |
Waiman Long | 2bd2c92 | 2013-04-17 15:23:13 -0400 | [diff] [blame] | 585 | */ |
| 586 | return retval; |
| 587 | } |
Davidlohr Bueso | 7691651 | 2014-07-30 13:41:53 -0700 | [diff] [blame] | 588 | |
| 589 | /* |
Davidlohr Bueso | 7691651 | 2014-07-30 13:41:53 -0700 | [diff] [blame] | 590 | * Optimistic spinning. |
| 591 | * |
| 592 | * We try to spin for acquisition when we find that the lock owner |
| 593 | * is currently running on a (different) CPU and while we don't |
| 594 | * need to reschedule. The rationale is that if the lock owner is |
| 595 | * running, it is likely to release the lock soon. |
| 596 | * |
Davidlohr Bueso | 7691651 | 2014-07-30 13:41:53 -0700 | [diff] [blame] | 597 | * The mutex spinners are queued up using MCS lock so that only one |
| 598 | * spinner can compete for the mutex. However, if mutex spinning isn't |
| 599 | * going to happen, there is no point in going through the lock/unlock |
| 600 | * overhead. |
| 601 | * |
| 602 | * Returns true when the lock was taken, otherwise false, indicating |
| 603 | * that we need to jump to the slowpath and sleep. |
Waiman Long | b341afb | 2016-08-26 19:35:09 -0400 | [diff] [blame] | 604 | * |
| 605 | * The waiter flag is set to true if the spinner is a waiter in the wait |
| 606 | * queue. The waiter-spinner will spin on the lock directly and concurrently |
| 607 | * with the spinner at the head of the OSQ, if present, until the owner is |
| 608 | * changed to itself. |
Davidlohr Bueso | 7691651 | 2014-07-30 13:41:53 -0700 | [diff] [blame] | 609 | */ |
Peter Zijlstra | 427b182 | 2016-12-23 10:36:00 +0100 | [diff] [blame] | 610 | static __always_inline bool |
| 611 | mutex_optimistic_spin(struct mutex *lock, struct ww_acquire_ctx *ww_ctx, |
Nicolai Hähnle | c516df9 | 2016-12-21 19:46:38 +0100 | [diff] [blame] | 612 | const bool use_ww_ctx, struct mutex_waiter *waiter) |
Davidlohr Bueso | 7691651 | 2014-07-30 13:41:53 -0700 | [diff] [blame] | 613 | { |
Waiman Long | b341afb | 2016-08-26 19:35:09 -0400 | [diff] [blame] | 614 | if (!waiter) { |
| 615 | /* |
| 616 | * The purpose of the mutex_can_spin_on_owner() function is |
| 617 | * to eliminate the overhead of osq_lock() and osq_unlock() |
| 618 | * in case spinning isn't possible. As a waiter-spinner |
| 619 | * is not going to take OSQ lock anyway, there is no need |
| 620 | * to call mutex_can_spin_on_owner(). |
| 621 | */ |
| 622 | if (!mutex_can_spin_on_owner(lock)) |
| 623 | goto fail; |
Davidlohr Bueso | 7691651 | 2014-07-30 13:41:53 -0700 | [diff] [blame] | 624 | |
Waiman Long | b341afb | 2016-08-26 19:35:09 -0400 | [diff] [blame] | 625 | /* |
| 626 | * In order to avoid a stampede of mutex spinners trying to |
| 627 | * acquire the mutex all at once, the spinners need to take a |
| 628 | * MCS (queued) lock first before spinning on the owner field. |
| 629 | */ |
| 630 | if (!osq_lock(&lock->osq)) |
| 631 | goto fail; |
| 632 | } |
Davidlohr Bueso | 7691651 | 2014-07-30 13:41:53 -0700 | [diff] [blame] | 633 | |
Waiman Long | b341afb | 2016-08-26 19:35:09 -0400 | [diff] [blame] | 634 | for (;;) { |
Davidlohr Bueso | 7691651 | 2014-07-30 13:41:53 -0700 | [diff] [blame] | 635 | struct task_struct *owner; |
| 636 | |
Peter Zijlstra | e274795 | 2017-01-11 14:17:48 +0100 | [diff] [blame] | 637 | /* Try to acquire the mutex... */ |
| 638 | owner = __mutex_trylock_or_owner(lock); |
| 639 | if (!owner) |
| 640 | break; |
Davidlohr Bueso | 7691651 | 2014-07-30 13:41:53 -0700 | [diff] [blame] | 641 | |
| 642 | /* |
Peter Zijlstra | e274795 | 2017-01-11 14:17:48 +0100 | [diff] [blame] | 643 | * There's an owner, wait for it to either |
Davidlohr Bueso | 7691651 | 2014-07-30 13:41:53 -0700 | [diff] [blame] | 644 | * release the lock or go to sleep. |
| 645 | */ |
Nicolai Hähnle | c516df9 | 2016-12-21 19:46:38 +0100 | [diff] [blame] | 646 | if (!mutex_spin_on_owner(lock, owner, ww_ctx, waiter)) |
Peter Zijlstra | e274795 | 2017-01-11 14:17:48 +0100 | [diff] [blame] | 647 | goto fail_unlock; |
Davidlohr Bueso | 7691651 | 2014-07-30 13:41:53 -0700 | [diff] [blame] | 648 | |
| 649 | /* |
Davidlohr Bueso | 7691651 | 2014-07-30 13:41:53 -0700 | [diff] [blame] | 650 | * The cpu_relax() call is a compiler barrier which forces |
| 651 | * everything in this loop to be re-loaded. We don't need |
| 652 | * memory barriers as we'll eventually observe the right |
| 653 | * values at the cost of a few extra spins. |
| 654 | */ |
Christian Borntraeger | f2f09a4 | 2016-10-25 11:03:14 +0200 | [diff] [blame] | 655 | cpu_relax(); |
Davidlohr Bueso | 7691651 | 2014-07-30 13:41:53 -0700 | [diff] [blame] | 656 | } |
| 657 | |
Waiman Long | b341afb | 2016-08-26 19:35:09 -0400 | [diff] [blame] | 658 | if (!waiter) |
| 659 | osq_unlock(&lock->osq); |
| 660 | |
| 661 | return true; |
| 662 | |
| 663 | |
| 664 | fail_unlock: |
| 665 | if (!waiter) |
| 666 | osq_unlock(&lock->osq); |
| 667 | |
| 668 | fail: |
Davidlohr Bueso | 7691651 | 2014-07-30 13:41:53 -0700 | [diff] [blame] | 669 | /* |
| 670 | * If we fell out of the spin path because of need_resched(), |
| 671 | * reschedule now, before we try-lock the mutex. This avoids getting |
| 672 | * scheduled out right after we obtained the mutex. |
| 673 | */ |
Peter Zijlstra | 6f942a1 | 2014-09-24 10:18:46 +0200 | [diff] [blame] | 674 | if (need_resched()) { |
| 675 | /* |
| 676 | * We _should_ have TASK_RUNNING here, but just in case |
| 677 | * we do not, make it so, otherwise we might get stuck. |
| 678 | */ |
| 679 | __set_current_state(TASK_RUNNING); |
Davidlohr Bueso | 7691651 | 2014-07-30 13:41:53 -0700 | [diff] [blame] | 680 | schedule_preempt_disabled(); |
Peter Zijlstra | 6f942a1 | 2014-09-24 10:18:46 +0200 | [diff] [blame] | 681 | } |
Davidlohr Bueso | 7691651 | 2014-07-30 13:41:53 -0700 | [diff] [blame] | 682 | |
| 683 | return false; |
| 684 | } |
| 685 | #else |
Peter Zijlstra | 427b182 | 2016-12-23 10:36:00 +0100 | [diff] [blame] | 686 | static __always_inline bool |
| 687 | mutex_optimistic_spin(struct mutex *lock, struct ww_acquire_ctx *ww_ctx, |
Nicolai Hähnle | c516df9 | 2016-12-21 19:46:38 +0100 | [diff] [blame] | 688 | const bool use_ww_ctx, struct mutex_waiter *waiter) |
Davidlohr Bueso | 7691651 | 2014-07-30 13:41:53 -0700 | [diff] [blame] | 689 | { |
| 690 | return false; |
| 691 | } |
Waiman Long | 41fcb9f | 2013-04-17 15:23:11 -0400 | [diff] [blame] | 692 | #endif |
| 693 | |
Peter Zijlstra | 3ca0ff5 | 2016-08-23 13:36:04 +0200 | [diff] [blame] | 694 | static noinline void __sched __mutex_unlock_slowpath(struct mutex *lock, unsigned long ip); |
Ingo Molnar | 6053ee3 | 2006-01-09 15:59:19 -0800 | [diff] [blame] | 695 | |
Randy Dunlap | ef5dc12 | 2010-09-02 15:48:16 -0700 | [diff] [blame] | 696 | /** |
Ingo Molnar | 6053ee3 | 2006-01-09 15:59:19 -0800 | [diff] [blame] | 697 | * mutex_unlock - release the mutex |
| 698 | * @lock: the mutex to be released |
| 699 | * |
| 700 | * Unlock a mutex that has been locked by this task previously. |
| 701 | * |
| 702 | * This function must not be used in interrupt context. Unlocking |
| 703 | * of a not locked mutex is not allowed. |
| 704 | * |
| 705 | * This function is similar to (but not equivalent to) up(). |
| 706 | */ |
Harvey Harrison | 7ad5b3a | 2008-02-08 04:19:53 -0800 | [diff] [blame] | 707 | void __sched mutex_unlock(struct mutex *lock) |
Ingo Molnar | 6053ee3 | 2006-01-09 15:59:19 -0800 | [diff] [blame] | 708 | { |
Peter Zijlstra | 3ca0ff5 | 2016-08-23 13:36:04 +0200 | [diff] [blame] | 709 | #ifndef CONFIG_DEBUG_LOCK_ALLOC |
| 710 | if (__mutex_unlock_fast(lock)) |
| 711 | return; |
Peter Zijlstra | 0d66bf6 | 2009-01-12 14:01:47 +0100 | [diff] [blame] | 712 | #endif |
Peter Zijlstra | 3ca0ff5 | 2016-08-23 13:36:04 +0200 | [diff] [blame] | 713 | __mutex_unlock_slowpath(lock, _RET_IP_); |
Ingo Molnar | 6053ee3 | 2006-01-09 15:59:19 -0800 | [diff] [blame] | 714 | } |
Ingo Molnar | 6053ee3 | 2006-01-09 15:59:19 -0800 | [diff] [blame] | 715 | EXPORT_SYMBOL(mutex_unlock); |
| 716 | |
Maarten Lankhorst | 040a0a3 | 2013-06-24 10:30:04 +0200 | [diff] [blame] | 717 | /** |
| 718 | * ww_mutex_unlock - release the w/w mutex |
| 719 | * @lock: the mutex to be released |
| 720 | * |
| 721 | * Unlock a mutex that has been locked by this task previously with any of the |
| 722 | * ww_mutex_lock* functions (with or without an acquire context). It is |
| 723 | * forbidden to release the locks after releasing the acquire context. |
| 724 | * |
| 725 | * This function must not be used in interrupt context. Unlocking |
| 726 | * of a unlocked mutex is not allowed. |
| 727 | */ |
| 728 | void __sched ww_mutex_unlock(struct ww_mutex *lock) |
| 729 | { |
| 730 | /* |
| 731 | * The unlocking fastpath is the 0->1 transition from 'locked' |
| 732 | * into 'unlocked' state: |
| 733 | */ |
| 734 | if (lock->ctx) { |
| 735 | #ifdef CONFIG_DEBUG_MUTEXES |
| 736 | DEBUG_LOCKS_WARN_ON(!lock->ctx->acquired); |
| 737 | #endif |
| 738 | if (lock->ctx->acquired > 0) |
| 739 | lock->ctx->acquired--; |
| 740 | lock->ctx = NULL; |
| 741 | } |
| 742 | |
Peter Zijlstra | 3ca0ff5 | 2016-08-23 13:36:04 +0200 | [diff] [blame] | 743 | mutex_unlock(&lock->base); |
Maarten Lankhorst | 040a0a3 | 2013-06-24 10:30:04 +0200 | [diff] [blame] | 744 | } |
| 745 | EXPORT_SYMBOL(ww_mutex_unlock); |
| 746 | |
Peter Ziljstra | 55f036c | 2018-06-15 10:07:12 +0200 | [diff] [blame] | 747 | |
| 748 | static __always_inline int __sched |
| 749 | __ww_mutex_kill(struct mutex *lock, struct ww_acquire_ctx *ww_ctx) |
| 750 | { |
| 751 | if (ww_ctx->acquired > 0) { |
| 752 | #ifdef CONFIG_DEBUG_MUTEXES |
| 753 | struct ww_mutex *ww; |
| 754 | |
| 755 | ww = container_of(lock, struct ww_mutex, base); |
| 756 | DEBUG_LOCKS_WARN_ON(ww_ctx->contending_lock); |
| 757 | ww_ctx->contending_lock = ww; |
| 758 | #endif |
| 759 | return -EDEADLK; |
| 760 | } |
| 761 | |
| 762 | return 0; |
| 763 | } |
| 764 | |
| 765 | |
| 766 | /* |
Thomas Hellstrom | 08295b3 | 2018-06-15 10:17:38 +0200 | [diff] [blame] | 767 | * Check the wound condition for the current lock acquire. |
| 768 | * |
| 769 | * Wound-Wait: If we're wounded, kill ourself. |
Peter Ziljstra | 55f036c | 2018-06-15 10:07:12 +0200 | [diff] [blame] | 770 | * |
| 771 | * Wait-Die: If we're trying to acquire a lock already held by an older |
| 772 | * context, kill ourselves. |
| 773 | * |
| 774 | * Since __ww_mutex_add_waiter() orders the wait-list on stamp, we only have to |
| 775 | * look at waiters before us in the wait-list. |
| 776 | */ |
Maarten Lankhorst | 040a0a3 | 2013-06-24 10:30:04 +0200 | [diff] [blame] | 777 | static inline int __sched |
Peter Ziljstra | 55f036c | 2018-06-15 10:07:12 +0200 | [diff] [blame] | 778 | __ww_mutex_check_kill(struct mutex *lock, struct mutex_waiter *waiter, |
| 779 | struct ww_acquire_ctx *ctx) |
Maarten Lankhorst | 040a0a3 | 2013-06-24 10:30:04 +0200 | [diff] [blame] | 780 | { |
| 781 | struct ww_mutex *ww = container_of(lock, struct ww_mutex, base); |
Davidlohr Bueso | 4d3199e | 2015-02-22 19:31:41 -0800 | [diff] [blame] | 782 | struct ww_acquire_ctx *hold_ctx = READ_ONCE(ww->ctx); |
Nicolai Hähnle | 200b187 | 2016-12-21 19:46:35 +0100 | [diff] [blame] | 783 | struct mutex_waiter *cur; |
Maarten Lankhorst | 040a0a3 | 2013-06-24 10:30:04 +0200 | [diff] [blame] | 784 | |
Peter Ziljstra | 55f036c | 2018-06-15 10:07:12 +0200 | [diff] [blame] | 785 | if (ctx->acquired == 0) |
| 786 | return 0; |
| 787 | |
Thomas Hellstrom | 08295b3 | 2018-06-15 10:17:38 +0200 | [diff] [blame] | 788 | if (!ctx->is_wait_die) { |
| 789 | if (ctx->wounded) |
| 790 | return __ww_mutex_kill(lock, ctx); |
| 791 | |
| 792 | return 0; |
| 793 | } |
| 794 | |
Nicolai Hähnle | 200b187 | 2016-12-21 19:46:35 +0100 | [diff] [blame] | 795 | if (hold_ctx && __ww_ctx_stamp_after(ctx, hold_ctx)) |
Peter Ziljstra | 55f036c | 2018-06-15 10:07:12 +0200 | [diff] [blame] | 796 | return __ww_mutex_kill(lock, ctx); |
Maarten Lankhorst | 040a0a3 | 2013-06-24 10:30:04 +0200 | [diff] [blame] | 797 | |
Nicolai Hähnle | 200b187 | 2016-12-21 19:46:35 +0100 | [diff] [blame] | 798 | /* |
| 799 | * If there is a waiter in front of us that has a context, then its |
Peter Ziljstra | 55f036c | 2018-06-15 10:07:12 +0200 | [diff] [blame] | 800 | * stamp is earlier than ours and we must kill ourself. |
Nicolai Hähnle | 200b187 | 2016-12-21 19:46:35 +0100 | [diff] [blame] | 801 | */ |
| 802 | cur = waiter; |
| 803 | list_for_each_entry_continue_reverse(cur, &lock->wait_list, list) { |
Peter Ziljstra | 55f036c | 2018-06-15 10:07:12 +0200 | [diff] [blame] | 804 | if (!cur->ww_ctx) |
| 805 | continue; |
| 806 | |
| 807 | return __ww_mutex_kill(lock, ctx); |
Maarten Lankhorst | 040a0a3 | 2013-06-24 10:30:04 +0200 | [diff] [blame] | 808 | } |
| 809 | |
| 810 | return 0; |
| 811 | } |
| 812 | |
Peter Ziljstra | 55f036c | 2018-06-15 10:07:12 +0200 | [diff] [blame] | 813 | /* |
| 814 | * Add @waiter to the wait-list, keep the wait-list ordered by stamp, smallest |
| 815 | * first. Such that older contexts are preferred to acquire the lock over |
| 816 | * younger contexts. |
| 817 | * |
| 818 | * Waiters without context are interspersed in FIFO order. |
| 819 | * |
| 820 | * Furthermore, for Wait-Die kill ourself immediately when possible (there are |
Thomas Hellstrom | 08295b3 | 2018-06-15 10:17:38 +0200 | [diff] [blame] | 821 | * older contexts already waiting) to avoid unnecessary waiting and for |
| 822 | * Wound-Wait ensure we wound the owning context when it is younger. |
Peter Ziljstra | 55f036c | 2018-06-15 10:07:12 +0200 | [diff] [blame] | 823 | */ |
Nicolai Hähnle | 6baa5c6 | 2016-12-21 19:46:34 +0100 | [diff] [blame] | 824 | static inline int __sched |
| 825 | __ww_mutex_add_waiter(struct mutex_waiter *waiter, |
| 826 | struct mutex *lock, |
| 827 | struct ww_acquire_ctx *ww_ctx) |
| 828 | { |
| 829 | struct mutex_waiter *cur; |
| 830 | struct list_head *pos; |
Thomas Hellstrom | 08295b3 | 2018-06-15 10:17:38 +0200 | [diff] [blame] | 831 | bool is_wait_die; |
Nicolai Hähnle | 6baa5c6 | 2016-12-21 19:46:34 +0100 | [diff] [blame] | 832 | |
| 833 | if (!ww_ctx) { |
Thomas Hellstrom | 08295b3 | 2018-06-15 10:17:38 +0200 | [diff] [blame] | 834 | __mutex_add_waiter(lock, waiter, &lock->wait_list); |
Nicolai Hähnle | 6baa5c6 | 2016-12-21 19:46:34 +0100 | [diff] [blame] | 835 | return 0; |
| 836 | } |
| 837 | |
Thomas Hellstrom | 08295b3 | 2018-06-15 10:17:38 +0200 | [diff] [blame] | 838 | is_wait_die = ww_ctx->is_wait_die; |
| 839 | |
Nicolai Hähnle | 6baa5c6 | 2016-12-21 19:46:34 +0100 | [diff] [blame] | 840 | /* |
| 841 | * Add the waiter before the first waiter with a higher stamp. |
| 842 | * Waiters without a context are skipped to avoid starving |
Thomas Hellstrom | 08295b3 | 2018-06-15 10:17:38 +0200 | [diff] [blame] | 843 | * them. Wait-Die waiters may die here. Wound-Wait waiters |
| 844 | * never die here, but they are sorted in stamp order and |
| 845 | * may wound the lock holder. |
Nicolai Hähnle | 6baa5c6 | 2016-12-21 19:46:34 +0100 | [diff] [blame] | 846 | */ |
| 847 | pos = &lock->wait_list; |
| 848 | list_for_each_entry_reverse(cur, &lock->wait_list, list) { |
| 849 | if (!cur->ww_ctx) |
| 850 | continue; |
| 851 | |
| 852 | if (__ww_ctx_stamp_after(ww_ctx, cur->ww_ctx)) { |
Peter Ziljstra | 55f036c | 2018-06-15 10:07:12 +0200 | [diff] [blame] | 853 | /* |
| 854 | * Wait-Die: if we find an older context waiting, there |
| 855 | * is no point in queueing behind it, as we'd have to |
| 856 | * die the moment it would acquire the lock. |
| 857 | */ |
Thomas Hellstrom | 08295b3 | 2018-06-15 10:17:38 +0200 | [diff] [blame] | 858 | if (is_wait_die) { |
| 859 | int ret = __ww_mutex_kill(lock, ww_ctx); |
Nicolai Hähnle | 6baa5c6 | 2016-12-21 19:46:34 +0100 | [diff] [blame] | 860 | |
Thomas Hellstrom | 08295b3 | 2018-06-15 10:17:38 +0200 | [diff] [blame] | 861 | if (ret) |
| 862 | return ret; |
| 863 | } |
Nicolai Hähnle | 6baa5c6 | 2016-12-21 19:46:34 +0100 | [diff] [blame] | 864 | |
| 865 | break; |
| 866 | } |
| 867 | |
| 868 | pos = &cur->list; |
Nicolai Hähnle | 200b187 | 2016-12-21 19:46:35 +0100 | [diff] [blame] | 869 | |
Peter Ziljstra | 55f036c | 2018-06-15 10:07:12 +0200 | [diff] [blame] | 870 | /* Wait-Die: ensure younger waiters die. */ |
| 871 | __ww_mutex_die(lock, cur, ww_ctx); |
Nicolai Hähnle | 6baa5c6 | 2016-12-21 19:46:34 +0100 | [diff] [blame] | 872 | } |
| 873 | |
Thomas Hellstrom | 08295b3 | 2018-06-15 10:17:38 +0200 | [diff] [blame] | 874 | __mutex_add_waiter(lock, waiter, pos); |
| 875 | |
| 876 | /* |
| 877 | * Wound-Wait: if we're blocking on a mutex owned by a younger context, |
| 878 | * wound that such that we might proceed. |
| 879 | */ |
| 880 | if (!is_wait_die) { |
| 881 | struct ww_mutex *ww = container_of(lock, struct ww_mutex, base); |
| 882 | |
| 883 | /* |
| 884 | * See ww_mutex_set_context_fastpath(). Orders setting |
| 885 | * MUTEX_FLAG_WAITERS vs the ww->ctx load, |
| 886 | * such that either we or the fastpath will wound @ww->ctx. |
| 887 | */ |
| 888 | smp_mb(); |
| 889 | __ww_mutex_wound(lock, ww_ctx, ww->ctx); |
| 890 | } |
Peter Ziljstra | 55f036c | 2018-06-15 10:07:12 +0200 | [diff] [blame] | 891 | |
Nicolai Hähnle | 6baa5c6 | 2016-12-21 19:46:34 +0100 | [diff] [blame] | 892 | return 0; |
Maarten Lankhorst | 040a0a3 | 2013-06-24 10:30:04 +0200 | [diff] [blame] | 893 | } |
| 894 | |
Ingo Molnar | 6053ee3 | 2006-01-09 15:59:19 -0800 | [diff] [blame] | 895 | /* |
| 896 | * Lock a mutex (possibly interruptible), slowpath: |
| 897 | */ |
Maarten Lankhorst | 040a0a3 | 2013-06-24 10:30:04 +0200 | [diff] [blame] | 898 | static __always_inline int __sched |
Peter Zijlstra | e4564f7 | 2007-10-11 22:11:12 +0200 | [diff] [blame] | 899 | __mutex_lock_common(struct mutex *lock, long state, unsigned int subclass, |
Maarten Lankhorst | 040a0a3 | 2013-06-24 10:30:04 +0200 | [diff] [blame] | 900 | struct lockdep_map *nest_lock, unsigned long ip, |
Tetsuo Handa | b026750 | 2013-10-17 19:45:29 +0900 | [diff] [blame] | 901 | struct ww_acquire_ctx *ww_ctx, const bool use_ww_ctx) |
Ingo Molnar | 6053ee3 | 2006-01-09 15:59:19 -0800 | [diff] [blame] | 902 | { |
Ingo Molnar | 6053ee3 | 2006-01-09 15:59:19 -0800 | [diff] [blame] | 903 | struct mutex_waiter waiter; |
Peter Zijlstra | 9d659ae | 2016-08-23 14:40:16 +0200 | [diff] [blame] | 904 | bool first = false; |
Waiman Long | a40ca56 | 2016-08-26 19:35:08 -0400 | [diff] [blame] | 905 | struct ww_mutex *ww; |
Maarten Lankhorst | 040a0a3 | 2013-06-24 10:30:04 +0200 | [diff] [blame] | 906 | int ret; |
Ingo Molnar | 6053ee3 | 2006-01-09 15:59:19 -0800 | [diff] [blame] | 907 | |
Peter Zijlstra | 427b182 | 2016-12-23 10:36:00 +0100 | [diff] [blame] | 908 | might_sleep(); |
Nicolai Hähnle | ea9e0fb | 2016-12-21 19:46:32 +0100 | [diff] [blame] | 909 | |
Peter Zijlstra | 427b182 | 2016-12-23 10:36:00 +0100 | [diff] [blame] | 910 | ww = container_of(lock, struct ww_mutex, base); |
Nicolai Hähnle | ea9e0fb | 2016-12-21 19:46:32 +0100 | [diff] [blame] | 911 | if (use_ww_ctx && ww_ctx) { |
Chris Wilson | 0422e83 | 2016-05-26 21:08:17 +0100 | [diff] [blame] | 912 | if (unlikely(ww_ctx == READ_ONCE(ww->ctx))) |
| 913 | return -EALREADY; |
Thomas Hellstrom | 08295b3 | 2018-06-15 10:17:38 +0200 | [diff] [blame] | 914 | |
| 915 | /* |
| 916 | * Reset the wounded flag after a kill. No other process can |
| 917 | * race and wound us here since they can't have a valid owner |
| 918 | * pointer if we don't have any locks held. |
| 919 | */ |
| 920 | if (ww_ctx->acquired == 0) |
| 921 | ww_ctx->wounded = 0; |
Chris Wilson | 0422e83 | 2016-05-26 21:08:17 +0100 | [diff] [blame] | 922 | } |
| 923 | |
Peter Zijlstra | 41719b0 | 2009-01-14 15:36:26 +0100 | [diff] [blame] | 924 | preempt_disable(); |
Peter Zijlstra | e4c70a6 | 2011-05-24 17:12:03 -0700 | [diff] [blame] | 925 | mutex_acquire_nest(&lock->dep_map, subclass, 0, nest_lock, ip); |
Frederic Weisbecker | c022602 | 2009-12-02 20:49:16 +0100 | [diff] [blame] | 926 | |
Peter Zijlstra | e274795 | 2017-01-11 14:17:48 +0100 | [diff] [blame] | 927 | if (__mutex_trylock(lock) || |
Nicolai Hähnle | c516df9 | 2016-12-21 19:46:38 +0100 | [diff] [blame] | 928 | mutex_optimistic_spin(lock, ww_ctx, use_ww_ctx, NULL)) { |
Davidlohr Bueso | 7691651 | 2014-07-30 13:41:53 -0700 | [diff] [blame] | 929 | /* got the lock, yay! */ |
Peter Zijlstra | 3ca0ff5 | 2016-08-23 13:36:04 +0200 | [diff] [blame] | 930 | lock_acquired(&lock->dep_map, ip); |
Nicolai Hähnle | ea9e0fb | 2016-12-21 19:46:32 +0100 | [diff] [blame] | 931 | if (use_ww_ctx && ww_ctx) |
Peter Zijlstra | 3ca0ff5 | 2016-08-23 13:36:04 +0200 | [diff] [blame] | 932 | ww_mutex_set_context_fastpath(ww, ww_ctx); |
Davidlohr Bueso | 7691651 | 2014-07-30 13:41:53 -0700 | [diff] [blame] | 933 | preempt_enable(); |
| 934 | return 0; |
Peter Zijlstra | 0d66bf6 | 2009-01-12 14:01:47 +0100 | [diff] [blame] | 935 | } |
Davidlohr Bueso | 7691651 | 2014-07-30 13:41:53 -0700 | [diff] [blame] | 936 | |
Peter Zijlstra | b9c16a0 | 2017-01-17 16:06:09 +0100 | [diff] [blame] | 937 | spin_lock(&lock->wait_lock); |
Jason Low | 1e820c9 | 2014-06-11 11:37:21 -0700 | [diff] [blame] | 938 | /* |
Peter Zijlstra | 3ca0ff5 | 2016-08-23 13:36:04 +0200 | [diff] [blame] | 939 | * After waiting to acquire the wait_lock, try again. |
Jason Low | 1e820c9 | 2014-06-11 11:37:21 -0700 | [diff] [blame] | 940 | */ |
Nicolai Hähnle | 659cf9f | 2016-12-21 19:46:36 +0100 | [diff] [blame] | 941 | if (__mutex_trylock(lock)) { |
| 942 | if (use_ww_ctx && ww_ctx) |
Peter Ziljstra | 55f036c | 2018-06-15 10:07:12 +0200 | [diff] [blame] | 943 | __ww_mutex_check_waiters(lock, ww_ctx); |
Nicolai Hähnle | 659cf9f | 2016-12-21 19:46:36 +0100 | [diff] [blame] | 944 | |
Davidlohr Bueso | ec83f42 | 2013-06-28 13:13:18 -0700 | [diff] [blame] | 945 | goto skip_wait; |
Nicolai Hähnle | 659cf9f | 2016-12-21 19:46:36 +0100 | [diff] [blame] | 946 | } |
Davidlohr Bueso | ec83f42 | 2013-06-28 13:13:18 -0700 | [diff] [blame] | 947 | |
Ingo Molnar | 9a11b49a | 2006-07-03 00:24:33 -0700 | [diff] [blame] | 948 | debug_mutex_lock_common(lock, &waiter); |
Davidlohr Bueso | d269a8b | 2017-01-03 13:43:13 -0800 | [diff] [blame] | 949 | debug_mutex_add_waiter(lock, &waiter, current); |
Ingo Molnar | 6053ee3 | 2006-01-09 15:59:19 -0800 | [diff] [blame] | 950 | |
Nicolai Hähnle | 6baa5c6 | 2016-12-21 19:46:34 +0100 | [diff] [blame] | 951 | lock_contended(&lock->dep_map, ip); |
| 952 | |
| 953 | if (!use_ww_ctx) { |
| 954 | /* add waiting tasks to the end of the waitqueue (FIFO): */ |
Thomas Hellstrom | 08295b3 | 2018-06-15 10:17:38 +0200 | [diff] [blame] | 955 | __mutex_add_waiter(lock, &waiter, &lock->wait_list); |
| 956 | |
Nicolai Hähnle | 977625a | 2016-12-21 19:46:39 +0100 | [diff] [blame] | 957 | |
| 958 | #ifdef CONFIG_DEBUG_MUTEXES |
| 959 | waiter.ww_ctx = MUTEX_POISON_WW_CTX; |
| 960 | #endif |
Nicolai Hähnle | 6baa5c6 | 2016-12-21 19:46:34 +0100 | [diff] [blame] | 961 | } else { |
Peter Ziljstra | 55f036c | 2018-06-15 10:07:12 +0200 | [diff] [blame] | 962 | /* |
| 963 | * Add in stamp order, waking up waiters that must kill |
| 964 | * themselves. |
| 965 | */ |
Nicolai Hähnle | 6baa5c6 | 2016-12-21 19:46:34 +0100 | [diff] [blame] | 966 | ret = __ww_mutex_add_waiter(&waiter, lock, ww_ctx); |
| 967 | if (ret) |
Peter Ziljstra | 55f036c | 2018-06-15 10:07:12 +0200 | [diff] [blame] | 968 | goto err_early_kill; |
Nicolai Hähnle | 6baa5c6 | 2016-12-21 19:46:34 +0100 | [diff] [blame] | 969 | |
| 970 | waiter.ww_ctx = ww_ctx; |
| 971 | } |
| 972 | |
Davidlohr Bueso | d269a8b | 2017-01-03 13:43:13 -0800 | [diff] [blame] | 973 | waiter.task = current; |
Ingo Molnar | 6053ee3 | 2006-01-09 15:59:19 -0800 | [diff] [blame] | 974 | |
Davidlohr Bueso | 642fa44 | 2017-01-03 13:43:14 -0800 | [diff] [blame] | 975 | set_current_state(state); |
Ingo Molnar | 6053ee3 | 2006-01-09 15:59:19 -0800 | [diff] [blame] | 976 | for (;;) { |
Peter Zijlstra | 5bbd7e6 | 2016-09-02 13:42:12 +0200 | [diff] [blame] | 977 | /* |
| 978 | * Once we hold wait_lock, we're serialized against |
| 979 | * mutex_unlock() handing the lock off to us, do a trylock |
| 980 | * before testing the error conditions to make sure we pick up |
| 981 | * the handoff. |
| 982 | */ |
Peter Zijlstra | e274795 | 2017-01-11 14:17:48 +0100 | [diff] [blame] | 983 | if (__mutex_trylock(lock)) |
Peter Zijlstra | 5bbd7e6 | 2016-09-02 13:42:12 +0200 | [diff] [blame] | 984 | goto acquired; |
Ingo Molnar | 6053ee3 | 2006-01-09 15:59:19 -0800 | [diff] [blame] | 985 | |
| 986 | /* |
Peter Ziljstra | 55f036c | 2018-06-15 10:07:12 +0200 | [diff] [blame] | 987 | * Check for signals and kill conditions while holding |
Peter Zijlstra | 5bbd7e6 | 2016-09-02 13:42:12 +0200 | [diff] [blame] | 988 | * wait_lock. This ensures the lock cancellation is ordered |
| 989 | * against mutex_unlock() and wake-ups do not go missing. |
Ingo Molnar | 6053ee3 | 2006-01-09 15:59:19 -0800 | [diff] [blame] | 990 | */ |
Davidlohr Bueso | d269a8b | 2017-01-03 13:43:13 -0800 | [diff] [blame] | 991 | if (unlikely(signal_pending_state(state, current))) { |
Maarten Lankhorst | 040a0a3 | 2013-06-24 10:30:04 +0200 | [diff] [blame] | 992 | ret = -EINTR; |
| 993 | goto err; |
Ingo Molnar | 6053ee3 | 2006-01-09 15:59:19 -0800 | [diff] [blame] | 994 | } |
Maarten Lankhorst | 040a0a3 | 2013-06-24 10:30:04 +0200 | [diff] [blame] | 995 | |
Peter Ziljstra | 55f036c | 2018-06-15 10:07:12 +0200 | [diff] [blame] | 996 | if (use_ww_ctx && ww_ctx) { |
| 997 | ret = __ww_mutex_check_kill(lock, &waiter, ww_ctx); |
Maarten Lankhorst | 040a0a3 | 2013-06-24 10:30:04 +0200 | [diff] [blame] | 998 | if (ret) |
| 999 | goto err; |
| 1000 | } |
| 1001 | |
Peter Zijlstra | b9c16a0 | 2017-01-17 16:06:09 +0100 | [diff] [blame] | 1002 | spin_unlock(&lock->wait_lock); |
Thomas Gleixner | bd2f553 | 2011-03-21 12:33:18 +0100 | [diff] [blame] | 1003 | schedule_preempt_disabled(); |
Peter Zijlstra | 9d659ae | 2016-08-23 14:40:16 +0200 | [diff] [blame] | 1004 | |
Nicolai Hähnle | 6baa5c6 | 2016-12-21 19:46:34 +0100 | [diff] [blame] | 1005 | /* |
| 1006 | * ww_mutex needs to always recheck its position since its waiter |
| 1007 | * list is not FIFO ordered. |
| 1008 | */ |
| 1009 | if ((use_ww_ctx && ww_ctx) || !first) { |
| 1010 | first = __mutex_waiter_is_first(lock, &waiter); |
| 1011 | if (first) |
| 1012 | __mutex_set_flag(lock, MUTEX_FLAG_HANDOFF); |
Peter Zijlstra | 9d659ae | 2016-08-23 14:40:16 +0200 | [diff] [blame] | 1013 | } |
Peter Zijlstra | 5bbd7e6 | 2016-09-02 13:42:12 +0200 | [diff] [blame] | 1014 | |
Davidlohr Bueso | 642fa44 | 2017-01-03 13:43:14 -0800 | [diff] [blame] | 1015 | set_current_state(state); |
Peter Zijlstra | 5bbd7e6 | 2016-09-02 13:42:12 +0200 | [diff] [blame] | 1016 | /* |
| 1017 | * Here we order against unlock; we must either see it change |
| 1018 | * state back to RUNNING and fall through the next schedule(), |
| 1019 | * or we must see its unlock and acquire. |
| 1020 | */ |
Peter Zijlstra | e274795 | 2017-01-11 14:17:48 +0100 | [diff] [blame] | 1021 | if (__mutex_trylock(lock) || |
Nicolai Hähnle | c516df9 | 2016-12-21 19:46:38 +0100 | [diff] [blame] | 1022 | (first && mutex_optimistic_spin(lock, ww_ctx, use_ww_ctx, &waiter))) |
Peter Zijlstra | 5bbd7e6 | 2016-09-02 13:42:12 +0200 | [diff] [blame] | 1023 | break; |
| 1024 | |
Peter Zijlstra | b9c16a0 | 2017-01-17 16:06:09 +0100 | [diff] [blame] | 1025 | spin_lock(&lock->wait_lock); |
Ingo Molnar | 6053ee3 | 2006-01-09 15:59:19 -0800 | [diff] [blame] | 1026 | } |
Peter Zijlstra | b9c16a0 | 2017-01-17 16:06:09 +0100 | [diff] [blame] | 1027 | spin_lock(&lock->wait_lock); |
Peter Zijlstra | 5bbd7e6 | 2016-09-02 13:42:12 +0200 | [diff] [blame] | 1028 | acquired: |
Davidlohr Bueso | 642fa44 | 2017-01-03 13:43:14 -0800 | [diff] [blame] | 1029 | __set_current_state(TASK_RUNNING); |
Davidlohr Bueso | 51587bc | 2015-01-19 17:39:21 -0800 | [diff] [blame] | 1030 | |
Thomas Hellstrom | 08295b3 | 2018-06-15 10:17:38 +0200 | [diff] [blame] | 1031 | if (use_ww_ctx && ww_ctx) { |
| 1032 | /* |
| 1033 | * Wound-Wait; we stole the lock (!first_waiter), check the |
| 1034 | * waiters as anyone might want to wound us. |
| 1035 | */ |
| 1036 | if (!ww_ctx->is_wait_die && |
| 1037 | !__mutex_waiter_is_first(lock, &waiter)) |
| 1038 | __ww_mutex_check_waiters(lock, ww_ctx); |
| 1039 | } |
| 1040 | |
Davidlohr Bueso | d269a8b | 2017-01-03 13:43:13 -0800 | [diff] [blame] | 1041 | mutex_remove_waiter(lock, &waiter, current); |
Davidlohr Bueso | ec83f42 | 2013-06-28 13:13:18 -0700 | [diff] [blame] | 1042 | if (likely(list_empty(&lock->wait_list))) |
Peter Zijlstra | 9d659ae | 2016-08-23 14:40:16 +0200 | [diff] [blame] | 1043 | __mutex_clear_flag(lock, MUTEX_FLAGS); |
Peter Zijlstra | 3ca0ff5 | 2016-08-23 13:36:04 +0200 | [diff] [blame] | 1044 | |
Davidlohr Bueso | ec83f42 | 2013-06-28 13:13:18 -0700 | [diff] [blame] | 1045 | debug_mutex_free_waiter(&waiter); |
| 1046 | |
| 1047 | skip_wait: |
| 1048 | /* got the lock - cleanup and rejoice! */ |
| 1049 | lock_acquired(&lock->dep_map, ip); |
Ingo Molnar | 6053ee3 | 2006-01-09 15:59:19 -0800 | [diff] [blame] | 1050 | |
Nicolai Hähnle | ea9e0fb | 2016-12-21 19:46:32 +0100 | [diff] [blame] | 1051 | if (use_ww_ctx && ww_ctx) |
Peter Ziljstra | 55f036c | 2018-06-15 10:07:12 +0200 | [diff] [blame] | 1052 | ww_mutex_lock_acquired(ww, ww_ctx); |
Maarten Lankhorst | 040a0a3 | 2013-06-24 10:30:04 +0200 | [diff] [blame] | 1053 | |
Peter Zijlstra | b9c16a0 | 2017-01-17 16:06:09 +0100 | [diff] [blame] | 1054 | spin_unlock(&lock->wait_lock); |
Peter Zijlstra | 41719b0 | 2009-01-14 15:36:26 +0100 | [diff] [blame] | 1055 | preempt_enable(); |
Ingo Molnar | 6053ee3 | 2006-01-09 15:59:19 -0800 | [diff] [blame] | 1056 | return 0; |
Maarten Lankhorst | 040a0a3 | 2013-06-24 10:30:04 +0200 | [diff] [blame] | 1057 | |
| 1058 | err: |
Davidlohr Bueso | 642fa44 | 2017-01-03 13:43:14 -0800 | [diff] [blame] | 1059 | __set_current_state(TASK_RUNNING); |
Davidlohr Bueso | d269a8b | 2017-01-03 13:43:13 -0800 | [diff] [blame] | 1060 | mutex_remove_waiter(lock, &waiter, current); |
Peter Ziljstra | 55f036c | 2018-06-15 10:07:12 +0200 | [diff] [blame] | 1061 | err_early_kill: |
Peter Zijlstra | b9c16a0 | 2017-01-17 16:06:09 +0100 | [diff] [blame] | 1062 | spin_unlock(&lock->wait_lock); |
Maarten Lankhorst | 040a0a3 | 2013-06-24 10:30:04 +0200 | [diff] [blame] | 1063 | debug_mutex_free_waiter(&waiter); |
| 1064 | mutex_release(&lock->dep_map, 1, ip); |
| 1065 | preempt_enable(); |
| 1066 | return ret; |
Ingo Molnar | 6053ee3 | 2006-01-09 15:59:19 -0800 | [diff] [blame] | 1067 | } |
| 1068 | |
Peter Zijlstra | 427b182 | 2016-12-23 10:36:00 +0100 | [diff] [blame] | 1069 | static int __sched |
| 1070 | __mutex_lock(struct mutex *lock, long state, unsigned int subclass, |
| 1071 | struct lockdep_map *nest_lock, unsigned long ip) |
| 1072 | { |
| 1073 | return __mutex_lock_common(lock, state, subclass, nest_lock, ip, NULL, false); |
| 1074 | } |
| 1075 | |
| 1076 | static int __sched |
| 1077 | __ww_mutex_lock(struct mutex *lock, long state, unsigned int subclass, |
| 1078 | struct lockdep_map *nest_lock, unsigned long ip, |
| 1079 | struct ww_acquire_ctx *ww_ctx) |
| 1080 | { |
| 1081 | return __mutex_lock_common(lock, state, subclass, nest_lock, ip, ww_ctx, true); |
| 1082 | } |
| 1083 | |
Ingo Molnar | ef5d470 | 2006-07-03 00:24:55 -0700 | [diff] [blame] | 1084 | #ifdef CONFIG_DEBUG_LOCK_ALLOC |
| 1085 | void __sched |
| 1086 | mutex_lock_nested(struct mutex *lock, unsigned int subclass) |
| 1087 | { |
Peter Zijlstra | 427b182 | 2016-12-23 10:36:00 +0100 | [diff] [blame] | 1088 | __mutex_lock(lock, TASK_UNINTERRUPTIBLE, subclass, NULL, _RET_IP_); |
Ingo Molnar | ef5d470 | 2006-07-03 00:24:55 -0700 | [diff] [blame] | 1089 | } |
| 1090 | |
| 1091 | EXPORT_SYMBOL_GPL(mutex_lock_nested); |
NeilBrown | d63a5a7 | 2006-12-08 02:36:17 -0800 | [diff] [blame] | 1092 | |
Peter Zijlstra | e4c70a6 | 2011-05-24 17:12:03 -0700 | [diff] [blame] | 1093 | void __sched |
| 1094 | _mutex_lock_nest_lock(struct mutex *lock, struct lockdep_map *nest) |
| 1095 | { |
Peter Zijlstra | 427b182 | 2016-12-23 10:36:00 +0100 | [diff] [blame] | 1096 | __mutex_lock(lock, TASK_UNINTERRUPTIBLE, 0, nest, _RET_IP_); |
Peter Zijlstra | e4c70a6 | 2011-05-24 17:12:03 -0700 | [diff] [blame] | 1097 | } |
Peter Zijlstra | e4c70a6 | 2011-05-24 17:12:03 -0700 | [diff] [blame] | 1098 | EXPORT_SYMBOL_GPL(_mutex_lock_nest_lock); |
| 1099 | |
NeilBrown | d63a5a7 | 2006-12-08 02:36:17 -0800 | [diff] [blame] | 1100 | int __sched |
Liam R. Howlett | ad77653 | 2007-12-06 17:37:59 -0500 | [diff] [blame] | 1101 | mutex_lock_killable_nested(struct mutex *lock, unsigned int subclass) |
| 1102 | { |
Peter Zijlstra | 427b182 | 2016-12-23 10:36:00 +0100 | [diff] [blame] | 1103 | return __mutex_lock(lock, TASK_KILLABLE, subclass, NULL, _RET_IP_); |
Liam R. Howlett | ad77653 | 2007-12-06 17:37:59 -0500 | [diff] [blame] | 1104 | } |
| 1105 | EXPORT_SYMBOL_GPL(mutex_lock_killable_nested); |
| 1106 | |
| 1107 | int __sched |
NeilBrown | d63a5a7 | 2006-12-08 02:36:17 -0800 | [diff] [blame] | 1108 | mutex_lock_interruptible_nested(struct mutex *lock, unsigned int subclass) |
| 1109 | { |
Peter Zijlstra | 427b182 | 2016-12-23 10:36:00 +0100 | [diff] [blame] | 1110 | return __mutex_lock(lock, TASK_INTERRUPTIBLE, subclass, NULL, _RET_IP_); |
NeilBrown | d63a5a7 | 2006-12-08 02:36:17 -0800 | [diff] [blame] | 1111 | } |
NeilBrown | d63a5a7 | 2006-12-08 02:36:17 -0800 | [diff] [blame] | 1112 | EXPORT_SYMBOL_GPL(mutex_lock_interruptible_nested); |
Maarten Lankhorst | 040a0a3 | 2013-06-24 10:30:04 +0200 | [diff] [blame] | 1113 | |
Tejun Heo | 1460cb6 | 2016-10-28 12:58:11 -0400 | [diff] [blame] | 1114 | void __sched |
| 1115 | mutex_lock_io_nested(struct mutex *lock, unsigned int subclass) |
| 1116 | { |
| 1117 | int token; |
| 1118 | |
| 1119 | might_sleep(); |
| 1120 | |
| 1121 | token = io_schedule_prepare(); |
| 1122 | __mutex_lock_common(lock, TASK_UNINTERRUPTIBLE, |
| 1123 | subclass, NULL, _RET_IP_, NULL, 0); |
| 1124 | io_schedule_finish(token); |
| 1125 | } |
| 1126 | EXPORT_SYMBOL_GPL(mutex_lock_io_nested); |
| 1127 | |
Daniel Vetter | 2301002 | 2013-06-20 13:31:17 +0200 | [diff] [blame] | 1128 | static inline int |
| 1129 | ww_mutex_deadlock_injection(struct ww_mutex *lock, struct ww_acquire_ctx *ctx) |
| 1130 | { |
| 1131 | #ifdef CONFIG_DEBUG_WW_MUTEX_SLOWPATH |
| 1132 | unsigned tmp; |
| 1133 | |
| 1134 | if (ctx->deadlock_inject_countdown-- == 0) { |
| 1135 | tmp = ctx->deadlock_inject_interval; |
| 1136 | if (tmp > UINT_MAX/4) |
| 1137 | tmp = UINT_MAX; |
| 1138 | else |
| 1139 | tmp = tmp*2 + tmp + tmp/2; |
| 1140 | |
| 1141 | ctx->deadlock_inject_interval = tmp; |
| 1142 | ctx->deadlock_inject_countdown = tmp; |
| 1143 | ctx->contending_lock = lock; |
| 1144 | |
| 1145 | ww_mutex_unlock(lock); |
| 1146 | |
| 1147 | return -EDEADLK; |
| 1148 | } |
| 1149 | #endif |
| 1150 | |
| 1151 | return 0; |
| 1152 | } |
Maarten Lankhorst | 040a0a3 | 2013-06-24 10:30:04 +0200 | [diff] [blame] | 1153 | |
| 1154 | int __sched |
Nicolai Hähnle | c5470b2 | 2016-12-21 19:46:33 +0100 | [diff] [blame] | 1155 | ww_mutex_lock(struct ww_mutex *lock, struct ww_acquire_ctx *ctx) |
Maarten Lankhorst | 040a0a3 | 2013-06-24 10:30:04 +0200 | [diff] [blame] | 1156 | { |
Daniel Vetter | 2301002 | 2013-06-20 13:31:17 +0200 | [diff] [blame] | 1157 | int ret; |
| 1158 | |
Maarten Lankhorst | 040a0a3 | 2013-06-24 10:30:04 +0200 | [diff] [blame] | 1159 | might_sleep(); |
Peter Zijlstra | 427b182 | 2016-12-23 10:36:00 +0100 | [diff] [blame] | 1160 | ret = __ww_mutex_lock(&lock->base, TASK_UNINTERRUPTIBLE, |
| 1161 | 0, ctx ? &ctx->dep_map : NULL, _RET_IP_, |
| 1162 | ctx); |
Nicolai Hähnle | ea9e0fb | 2016-12-21 19:46:32 +0100 | [diff] [blame] | 1163 | if (!ret && ctx && ctx->acquired > 1) |
Daniel Vetter | 2301002 | 2013-06-20 13:31:17 +0200 | [diff] [blame] | 1164 | return ww_mutex_deadlock_injection(lock, ctx); |
| 1165 | |
| 1166 | return ret; |
Maarten Lankhorst | 040a0a3 | 2013-06-24 10:30:04 +0200 | [diff] [blame] | 1167 | } |
Nicolai Hähnle | c5470b2 | 2016-12-21 19:46:33 +0100 | [diff] [blame] | 1168 | EXPORT_SYMBOL_GPL(ww_mutex_lock); |
Maarten Lankhorst | 040a0a3 | 2013-06-24 10:30:04 +0200 | [diff] [blame] | 1169 | |
| 1170 | int __sched |
Nicolai Hähnle | c5470b2 | 2016-12-21 19:46:33 +0100 | [diff] [blame] | 1171 | ww_mutex_lock_interruptible(struct ww_mutex *lock, struct ww_acquire_ctx *ctx) |
Maarten Lankhorst | 040a0a3 | 2013-06-24 10:30:04 +0200 | [diff] [blame] | 1172 | { |
Daniel Vetter | 2301002 | 2013-06-20 13:31:17 +0200 | [diff] [blame] | 1173 | int ret; |
| 1174 | |
Maarten Lankhorst | 040a0a3 | 2013-06-24 10:30:04 +0200 | [diff] [blame] | 1175 | might_sleep(); |
Peter Zijlstra | 427b182 | 2016-12-23 10:36:00 +0100 | [diff] [blame] | 1176 | ret = __ww_mutex_lock(&lock->base, TASK_INTERRUPTIBLE, |
| 1177 | 0, ctx ? &ctx->dep_map : NULL, _RET_IP_, |
| 1178 | ctx); |
Daniel Vetter | 2301002 | 2013-06-20 13:31:17 +0200 | [diff] [blame] | 1179 | |
Nicolai Hähnle | ea9e0fb | 2016-12-21 19:46:32 +0100 | [diff] [blame] | 1180 | if (!ret && ctx && ctx->acquired > 1) |
Daniel Vetter | 2301002 | 2013-06-20 13:31:17 +0200 | [diff] [blame] | 1181 | return ww_mutex_deadlock_injection(lock, ctx); |
| 1182 | |
| 1183 | return ret; |
Maarten Lankhorst | 040a0a3 | 2013-06-24 10:30:04 +0200 | [diff] [blame] | 1184 | } |
Nicolai Hähnle | c5470b2 | 2016-12-21 19:46:33 +0100 | [diff] [blame] | 1185 | EXPORT_SYMBOL_GPL(ww_mutex_lock_interruptible); |
Maarten Lankhorst | 040a0a3 | 2013-06-24 10:30:04 +0200 | [diff] [blame] | 1186 | |
Ingo Molnar | ef5d470 | 2006-07-03 00:24:55 -0700 | [diff] [blame] | 1187 | #endif |
| 1188 | |
Ingo Molnar | 6053ee3 | 2006-01-09 15:59:19 -0800 | [diff] [blame] | 1189 | /* |
| 1190 | * Release the lock, slowpath: |
| 1191 | */ |
Peter Zijlstra | 3ca0ff5 | 2016-08-23 13:36:04 +0200 | [diff] [blame] | 1192 | static noinline void __sched __mutex_unlock_slowpath(struct mutex *lock, unsigned long ip) |
Ingo Molnar | 6053ee3 | 2006-01-09 15:59:19 -0800 | [diff] [blame] | 1193 | { |
Peter Zijlstra | 9d659ae | 2016-08-23 14:40:16 +0200 | [diff] [blame] | 1194 | struct task_struct *next = NULL; |
Waiman Long | 194a6b5 | 2016-11-17 11:46:38 -0500 | [diff] [blame] | 1195 | DEFINE_WAKE_Q(wake_q); |
Peter Zijlstra | b9c16a0 | 2017-01-17 16:06:09 +0100 | [diff] [blame] | 1196 | unsigned long owner; |
Ingo Molnar | 6053ee3 | 2006-01-09 15:59:19 -0800 | [diff] [blame] | 1197 | |
Peter Zijlstra | 3ca0ff5 | 2016-08-23 13:36:04 +0200 | [diff] [blame] | 1198 | mutex_release(&lock->dep_map, 1, ip); |
| 1199 | |
Ingo Molnar | 6053ee3 | 2006-01-09 15:59:19 -0800 | [diff] [blame] | 1200 | /* |
Peter Zijlstra | 9d659ae | 2016-08-23 14:40:16 +0200 | [diff] [blame] | 1201 | * Release the lock before (potentially) taking the spinlock such that |
| 1202 | * other contenders can get on with things ASAP. |
| 1203 | * |
| 1204 | * Except when HANDOFF, in that case we must not clear the owner field, |
| 1205 | * but instead set it to the top waiter. |
Ingo Molnar | 6053ee3 | 2006-01-09 15:59:19 -0800 | [diff] [blame] | 1206 | */ |
Peter Zijlstra | 9d659ae | 2016-08-23 14:40:16 +0200 | [diff] [blame] | 1207 | owner = atomic_long_read(&lock->owner); |
| 1208 | for (;;) { |
| 1209 | unsigned long old; |
| 1210 | |
| 1211 | #ifdef CONFIG_DEBUG_MUTEXES |
| 1212 | DEBUG_LOCKS_WARN_ON(__owner_task(owner) != current); |
Peter Zijlstra | e274795 | 2017-01-11 14:17:48 +0100 | [diff] [blame] | 1213 | DEBUG_LOCKS_WARN_ON(owner & MUTEX_FLAG_PICKUP); |
Peter Zijlstra | 9d659ae | 2016-08-23 14:40:16 +0200 | [diff] [blame] | 1214 | #endif |
| 1215 | |
| 1216 | if (owner & MUTEX_FLAG_HANDOFF) |
| 1217 | break; |
| 1218 | |
| 1219 | old = atomic_long_cmpxchg_release(&lock->owner, owner, |
| 1220 | __owner_flags(owner)); |
| 1221 | if (old == owner) { |
| 1222 | if (owner & MUTEX_FLAG_WAITERS) |
| 1223 | break; |
| 1224 | |
| 1225 | return; |
| 1226 | } |
| 1227 | |
| 1228 | owner = old; |
| 1229 | } |
Ingo Molnar | 6053ee3 | 2006-01-09 15:59:19 -0800 | [diff] [blame] | 1230 | |
Peter Zijlstra | b9c16a0 | 2017-01-17 16:06:09 +0100 | [diff] [blame] | 1231 | spin_lock(&lock->wait_lock); |
Jason Low | 1d8fe7d | 2014-01-28 11:13:14 -0800 | [diff] [blame] | 1232 | debug_mutex_unlock(lock); |
Ingo Molnar | 6053ee3 | 2006-01-09 15:59:19 -0800 | [diff] [blame] | 1233 | if (!list_empty(&lock->wait_list)) { |
| 1234 | /* get the first entry from the wait-list: */ |
| 1235 | struct mutex_waiter *waiter = |
Peter Zijlstra | 9d659ae | 2016-08-23 14:40:16 +0200 | [diff] [blame] | 1236 | list_first_entry(&lock->wait_list, |
| 1237 | struct mutex_waiter, list); |
| 1238 | |
| 1239 | next = waiter->task; |
Ingo Molnar | 6053ee3 | 2006-01-09 15:59:19 -0800 | [diff] [blame] | 1240 | |
| 1241 | debug_mutex_wake_waiter(lock, waiter); |
Peter Zijlstra | 9d659ae | 2016-08-23 14:40:16 +0200 | [diff] [blame] | 1242 | wake_q_add(&wake_q, next); |
Ingo Molnar | 6053ee3 | 2006-01-09 15:59:19 -0800 | [diff] [blame] | 1243 | } |
| 1244 | |
Peter Zijlstra | 9d659ae | 2016-08-23 14:40:16 +0200 | [diff] [blame] | 1245 | if (owner & MUTEX_FLAG_HANDOFF) |
| 1246 | __mutex_handoff(lock, next); |
| 1247 | |
Peter Zijlstra | b9c16a0 | 2017-01-17 16:06:09 +0100 | [diff] [blame] | 1248 | spin_unlock(&lock->wait_lock); |
Peter Zijlstra | 9d659ae | 2016-08-23 14:40:16 +0200 | [diff] [blame] | 1249 | |
Davidlohr Bueso | 1329ce6 | 2016-01-24 18:23:43 -0800 | [diff] [blame] | 1250 | wake_up_q(&wake_q); |
Ingo Molnar | 6053ee3 | 2006-01-09 15:59:19 -0800 | [diff] [blame] | 1251 | } |
| 1252 | |
Peter Zijlstra | e4564f7 | 2007-10-11 22:11:12 +0200 | [diff] [blame] | 1253 | #ifndef CONFIG_DEBUG_LOCK_ALLOC |
Ingo Molnar | 9a11b49a | 2006-07-03 00:24:33 -0700 | [diff] [blame] | 1254 | /* |
Ingo Molnar | 6053ee3 | 2006-01-09 15:59:19 -0800 | [diff] [blame] | 1255 | * Here come the less common (and hence less performance-critical) APIs: |
| 1256 | * mutex_lock_interruptible() and mutex_trylock(). |
| 1257 | */ |
Harvey Harrison | 7ad5b3a | 2008-02-08 04:19:53 -0800 | [diff] [blame] | 1258 | static noinline int __sched |
Maarten Lankhorst | a41b56e | 2013-06-20 13:31:05 +0200 | [diff] [blame] | 1259 | __mutex_lock_killable_slowpath(struct mutex *lock); |
Liam R. Howlett | ad77653 | 2007-12-06 17:37:59 -0500 | [diff] [blame] | 1260 | |
Harvey Harrison | 7ad5b3a | 2008-02-08 04:19:53 -0800 | [diff] [blame] | 1261 | static noinline int __sched |
Maarten Lankhorst | a41b56e | 2013-06-20 13:31:05 +0200 | [diff] [blame] | 1262 | __mutex_lock_interruptible_slowpath(struct mutex *lock); |
Ingo Molnar | 6053ee3 | 2006-01-09 15:59:19 -0800 | [diff] [blame] | 1263 | |
Randy Dunlap | ef5dc12 | 2010-09-02 15:48:16 -0700 | [diff] [blame] | 1264 | /** |
Matthew Wilcox | 45dbac0 | 2018-03-15 04:58:12 -0700 | [diff] [blame] | 1265 | * mutex_lock_interruptible() - Acquire the mutex, interruptible by signals. |
| 1266 | * @lock: The mutex to be acquired. |
Ingo Molnar | 6053ee3 | 2006-01-09 15:59:19 -0800 | [diff] [blame] | 1267 | * |
Matthew Wilcox | 45dbac0 | 2018-03-15 04:58:12 -0700 | [diff] [blame] | 1268 | * Lock the mutex like mutex_lock(). If a signal is delivered while the |
| 1269 | * process is sleeping, this function will return without acquiring the |
| 1270 | * mutex. |
Ingo Molnar | 6053ee3 | 2006-01-09 15:59:19 -0800 | [diff] [blame] | 1271 | * |
Matthew Wilcox | 45dbac0 | 2018-03-15 04:58:12 -0700 | [diff] [blame] | 1272 | * Context: Process context. |
| 1273 | * Return: 0 if the lock was successfully acquired or %-EINTR if a |
| 1274 | * signal arrived. |
Ingo Molnar | 6053ee3 | 2006-01-09 15:59:19 -0800 | [diff] [blame] | 1275 | */ |
Harvey Harrison | 7ad5b3a | 2008-02-08 04:19:53 -0800 | [diff] [blame] | 1276 | int __sched mutex_lock_interruptible(struct mutex *lock) |
Ingo Molnar | 6053ee3 | 2006-01-09 15:59:19 -0800 | [diff] [blame] | 1277 | { |
Ingo Molnar | c544bdb | 2006-01-10 22:10:36 +0100 | [diff] [blame] | 1278 | might_sleep(); |
Peter Zijlstra | 3ca0ff5 | 2016-08-23 13:36:04 +0200 | [diff] [blame] | 1279 | |
| 1280 | if (__mutex_trylock_fast(lock)) |
Maarten Lankhorst | a41b56e | 2013-06-20 13:31:05 +0200 | [diff] [blame] | 1281 | return 0; |
Peter Zijlstra | 3ca0ff5 | 2016-08-23 13:36:04 +0200 | [diff] [blame] | 1282 | |
| 1283 | return __mutex_lock_interruptible_slowpath(lock); |
Ingo Molnar | 6053ee3 | 2006-01-09 15:59:19 -0800 | [diff] [blame] | 1284 | } |
| 1285 | |
| 1286 | EXPORT_SYMBOL(mutex_lock_interruptible); |
| 1287 | |
Matthew Wilcox | 45dbac0 | 2018-03-15 04:58:12 -0700 | [diff] [blame] | 1288 | /** |
| 1289 | * mutex_lock_killable() - Acquire the mutex, interruptible by fatal signals. |
| 1290 | * @lock: The mutex to be acquired. |
| 1291 | * |
| 1292 | * Lock the mutex like mutex_lock(). If a signal which will be fatal to |
| 1293 | * the current process is delivered while the process is sleeping, this |
| 1294 | * function will return without acquiring the mutex. |
| 1295 | * |
| 1296 | * Context: Process context. |
| 1297 | * Return: 0 if the lock was successfully acquired or %-EINTR if a |
| 1298 | * fatal signal arrived. |
| 1299 | */ |
Harvey Harrison | 7ad5b3a | 2008-02-08 04:19:53 -0800 | [diff] [blame] | 1300 | int __sched mutex_lock_killable(struct mutex *lock) |
Liam R. Howlett | ad77653 | 2007-12-06 17:37:59 -0500 | [diff] [blame] | 1301 | { |
| 1302 | might_sleep(); |
Peter Zijlstra | 3ca0ff5 | 2016-08-23 13:36:04 +0200 | [diff] [blame] | 1303 | |
| 1304 | if (__mutex_trylock_fast(lock)) |
Maarten Lankhorst | a41b56e | 2013-06-20 13:31:05 +0200 | [diff] [blame] | 1305 | return 0; |
Peter Zijlstra | 3ca0ff5 | 2016-08-23 13:36:04 +0200 | [diff] [blame] | 1306 | |
| 1307 | return __mutex_lock_killable_slowpath(lock); |
Liam R. Howlett | ad77653 | 2007-12-06 17:37:59 -0500 | [diff] [blame] | 1308 | } |
| 1309 | EXPORT_SYMBOL(mutex_lock_killable); |
| 1310 | |
Matthew Wilcox | 45dbac0 | 2018-03-15 04:58:12 -0700 | [diff] [blame] | 1311 | /** |
| 1312 | * mutex_lock_io() - Acquire the mutex and mark the process as waiting for I/O |
| 1313 | * @lock: The mutex to be acquired. |
| 1314 | * |
| 1315 | * Lock the mutex like mutex_lock(). While the task is waiting for this |
| 1316 | * mutex, it will be accounted as being in the IO wait state by the |
| 1317 | * scheduler. |
| 1318 | * |
| 1319 | * Context: Process context. |
| 1320 | */ |
Tejun Heo | 1460cb6 | 2016-10-28 12:58:11 -0400 | [diff] [blame] | 1321 | void __sched mutex_lock_io(struct mutex *lock) |
| 1322 | { |
| 1323 | int token; |
| 1324 | |
| 1325 | token = io_schedule_prepare(); |
| 1326 | mutex_lock(lock); |
| 1327 | io_schedule_finish(token); |
| 1328 | } |
| 1329 | EXPORT_SYMBOL_GPL(mutex_lock_io); |
| 1330 | |
Peter Zijlstra | 3ca0ff5 | 2016-08-23 13:36:04 +0200 | [diff] [blame] | 1331 | static noinline void __sched |
| 1332 | __mutex_lock_slowpath(struct mutex *lock) |
Peter Zijlstra | e4564f7 | 2007-10-11 22:11:12 +0200 | [diff] [blame] | 1333 | { |
Peter Zijlstra | 427b182 | 2016-12-23 10:36:00 +0100 | [diff] [blame] | 1334 | __mutex_lock(lock, TASK_UNINTERRUPTIBLE, 0, NULL, _RET_IP_); |
Peter Zijlstra | e4564f7 | 2007-10-11 22:11:12 +0200 | [diff] [blame] | 1335 | } |
| 1336 | |
Harvey Harrison | 7ad5b3a | 2008-02-08 04:19:53 -0800 | [diff] [blame] | 1337 | static noinline int __sched |
Maarten Lankhorst | a41b56e | 2013-06-20 13:31:05 +0200 | [diff] [blame] | 1338 | __mutex_lock_killable_slowpath(struct mutex *lock) |
Liam R. Howlett | ad77653 | 2007-12-06 17:37:59 -0500 | [diff] [blame] | 1339 | { |
Peter Zijlstra | 427b182 | 2016-12-23 10:36:00 +0100 | [diff] [blame] | 1340 | return __mutex_lock(lock, TASK_KILLABLE, 0, NULL, _RET_IP_); |
Liam R. Howlett | ad77653 | 2007-12-06 17:37:59 -0500 | [diff] [blame] | 1341 | } |
| 1342 | |
Harvey Harrison | 7ad5b3a | 2008-02-08 04:19:53 -0800 | [diff] [blame] | 1343 | static noinline int __sched |
Maarten Lankhorst | a41b56e | 2013-06-20 13:31:05 +0200 | [diff] [blame] | 1344 | __mutex_lock_interruptible_slowpath(struct mutex *lock) |
Ingo Molnar | 6053ee3 | 2006-01-09 15:59:19 -0800 | [diff] [blame] | 1345 | { |
Peter Zijlstra | 427b182 | 2016-12-23 10:36:00 +0100 | [diff] [blame] | 1346 | return __mutex_lock(lock, TASK_INTERRUPTIBLE, 0, NULL, _RET_IP_); |
Ingo Molnar | 6053ee3 | 2006-01-09 15:59:19 -0800 | [diff] [blame] | 1347 | } |
Maarten Lankhorst | 040a0a3 | 2013-06-24 10:30:04 +0200 | [diff] [blame] | 1348 | |
| 1349 | static noinline int __sched |
| 1350 | __ww_mutex_lock_slowpath(struct ww_mutex *lock, struct ww_acquire_ctx *ctx) |
| 1351 | { |
Peter Zijlstra | 427b182 | 2016-12-23 10:36:00 +0100 | [diff] [blame] | 1352 | return __ww_mutex_lock(&lock->base, TASK_UNINTERRUPTIBLE, 0, NULL, |
| 1353 | _RET_IP_, ctx); |
Maarten Lankhorst | 040a0a3 | 2013-06-24 10:30:04 +0200 | [diff] [blame] | 1354 | } |
| 1355 | |
| 1356 | static noinline int __sched |
| 1357 | __ww_mutex_lock_interruptible_slowpath(struct ww_mutex *lock, |
| 1358 | struct ww_acquire_ctx *ctx) |
| 1359 | { |
Peter Zijlstra | 427b182 | 2016-12-23 10:36:00 +0100 | [diff] [blame] | 1360 | return __ww_mutex_lock(&lock->base, TASK_INTERRUPTIBLE, 0, NULL, |
| 1361 | _RET_IP_, ctx); |
Maarten Lankhorst | 040a0a3 | 2013-06-24 10:30:04 +0200 | [diff] [blame] | 1362 | } |
| 1363 | |
Peter Zijlstra | e4564f7 | 2007-10-11 22:11:12 +0200 | [diff] [blame] | 1364 | #endif |
Ingo Molnar | 6053ee3 | 2006-01-09 15:59:19 -0800 | [diff] [blame] | 1365 | |
Randy Dunlap | ef5dc12 | 2010-09-02 15:48:16 -0700 | [diff] [blame] | 1366 | /** |
| 1367 | * mutex_trylock - try to acquire the mutex, without waiting |
Ingo Molnar | 6053ee3 | 2006-01-09 15:59:19 -0800 | [diff] [blame] | 1368 | * @lock: the mutex to be acquired |
| 1369 | * |
| 1370 | * Try to acquire the mutex atomically. Returns 1 if the mutex |
| 1371 | * has been acquired successfully, and 0 on contention. |
| 1372 | * |
| 1373 | * NOTE: this function follows the spin_trylock() convention, so |
Randy Dunlap | ef5dc12 | 2010-09-02 15:48:16 -0700 | [diff] [blame] | 1374 | * it is negated from the down_trylock() return values! Be careful |
Ingo Molnar | 6053ee3 | 2006-01-09 15:59:19 -0800 | [diff] [blame] | 1375 | * about this when converting semaphore users to mutexes. |
| 1376 | * |
| 1377 | * This function must not be used in interrupt context. The |
| 1378 | * mutex must be released by the same task that acquired it. |
| 1379 | */ |
Harvey Harrison | 7ad5b3a | 2008-02-08 04:19:53 -0800 | [diff] [blame] | 1380 | int __sched mutex_trylock(struct mutex *lock) |
Ingo Molnar | 6053ee3 | 2006-01-09 15:59:19 -0800 | [diff] [blame] | 1381 | { |
Peter Zijlstra | e274795 | 2017-01-11 14:17:48 +0100 | [diff] [blame] | 1382 | bool locked = __mutex_trylock(lock); |
Peter Zijlstra | 0d66bf6 | 2009-01-12 14:01:47 +0100 | [diff] [blame] | 1383 | |
Peter Zijlstra | 3ca0ff5 | 2016-08-23 13:36:04 +0200 | [diff] [blame] | 1384 | if (locked) |
| 1385 | mutex_acquire(&lock->dep_map, 0, 1, _RET_IP_); |
Peter Zijlstra | 0d66bf6 | 2009-01-12 14:01:47 +0100 | [diff] [blame] | 1386 | |
Peter Zijlstra | 3ca0ff5 | 2016-08-23 13:36:04 +0200 | [diff] [blame] | 1387 | return locked; |
Ingo Molnar | 6053ee3 | 2006-01-09 15:59:19 -0800 | [diff] [blame] | 1388 | } |
Ingo Molnar | 6053ee3 | 2006-01-09 15:59:19 -0800 | [diff] [blame] | 1389 | EXPORT_SYMBOL(mutex_trylock); |
Andrew Morton | a511e3f | 2009-04-29 15:59:58 -0700 | [diff] [blame] | 1390 | |
Maarten Lankhorst | 040a0a3 | 2013-06-24 10:30:04 +0200 | [diff] [blame] | 1391 | #ifndef CONFIG_DEBUG_LOCK_ALLOC |
| 1392 | int __sched |
Nicolai Hähnle | c5470b2 | 2016-12-21 19:46:33 +0100 | [diff] [blame] | 1393 | ww_mutex_lock(struct ww_mutex *lock, struct ww_acquire_ctx *ctx) |
Maarten Lankhorst | 040a0a3 | 2013-06-24 10:30:04 +0200 | [diff] [blame] | 1394 | { |
Maarten Lankhorst | 040a0a3 | 2013-06-24 10:30:04 +0200 | [diff] [blame] | 1395 | might_sleep(); |
| 1396 | |
Peter Zijlstra | 3ca0ff5 | 2016-08-23 13:36:04 +0200 | [diff] [blame] | 1397 | if (__mutex_trylock_fast(&lock->base)) { |
Nicolai Hähnle | ea9e0fb | 2016-12-21 19:46:32 +0100 | [diff] [blame] | 1398 | if (ctx) |
| 1399 | ww_mutex_set_context_fastpath(lock, ctx); |
Peter Zijlstra | 3ca0ff5 | 2016-08-23 13:36:04 +0200 | [diff] [blame] | 1400 | return 0; |
| 1401 | } |
| 1402 | |
| 1403 | return __ww_mutex_lock_slowpath(lock, ctx); |
Maarten Lankhorst | 040a0a3 | 2013-06-24 10:30:04 +0200 | [diff] [blame] | 1404 | } |
Nicolai Hähnle | c5470b2 | 2016-12-21 19:46:33 +0100 | [diff] [blame] | 1405 | EXPORT_SYMBOL(ww_mutex_lock); |
Maarten Lankhorst | 040a0a3 | 2013-06-24 10:30:04 +0200 | [diff] [blame] | 1406 | |
| 1407 | int __sched |
Nicolai Hähnle | c5470b2 | 2016-12-21 19:46:33 +0100 | [diff] [blame] | 1408 | ww_mutex_lock_interruptible(struct ww_mutex *lock, struct ww_acquire_ctx *ctx) |
Maarten Lankhorst | 040a0a3 | 2013-06-24 10:30:04 +0200 | [diff] [blame] | 1409 | { |
Maarten Lankhorst | 040a0a3 | 2013-06-24 10:30:04 +0200 | [diff] [blame] | 1410 | might_sleep(); |
| 1411 | |
Peter Zijlstra | 3ca0ff5 | 2016-08-23 13:36:04 +0200 | [diff] [blame] | 1412 | if (__mutex_trylock_fast(&lock->base)) { |
Nicolai Hähnle | ea9e0fb | 2016-12-21 19:46:32 +0100 | [diff] [blame] | 1413 | if (ctx) |
| 1414 | ww_mutex_set_context_fastpath(lock, ctx); |
Peter Zijlstra | 3ca0ff5 | 2016-08-23 13:36:04 +0200 | [diff] [blame] | 1415 | return 0; |
| 1416 | } |
| 1417 | |
| 1418 | return __ww_mutex_lock_interruptible_slowpath(lock, ctx); |
Maarten Lankhorst | 040a0a3 | 2013-06-24 10:30:04 +0200 | [diff] [blame] | 1419 | } |
Nicolai Hähnle | c5470b2 | 2016-12-21 19:46:33 +0100 | [diff] [blame] | 1420 | EXPORT_SYMBOL(ww_mutex_lock_interruptible); |
Maarten Lankhorst | 040a0a3 | 2013-06-24 10:30:04 +0200 | [diff] [blame] | 1421 | |
| 1422 | #endif |
| 1423 | |
Andrew Morton | a511e3f | 2009-04-29 15:59:58 -0700 | [diff] [blame] | 1424 | /** |
| 1425 | * atomic_dec_and_mutex_lock - return holding mutex if we dec to 0 |
| 1426 | * @cnt: the atomic which we are to dec |
| 1427 | * @lock: the mutex to return holding if we dec to 0 |
| 1428 | * |
| 1429 | * return true and hold lock if we dec to 0, return false otherwise |
| 1430 | */ |
| 1431 | int atomic_dec_and_mutex_lock(atomic_t *cnt, struct mutex *lock) |
| 1432 | { |
| 1433 | /* dec if we can't possibly hit 0 */ |
| 1434 | if (atomic_add_unless(cnt, -1, 1)) |
| 1435 | return 0; |
| 1436 | /* we might hit 0, so take the lock */ |
| 1437 | mutex_lock(lock); |
| 1438 | if (!atomic_dec_and_test(cnt)) { |
| 1439 | /* when we actually did the dec, we didn't hit 0 */ |
| 1440 | mutex_unlock(lock); |
| 1441 | return 0; |
| 1442 | } |
| 1443 | /* we hit 0, and we hold the lock */ |
| 1444 | return 1; |
| 1445 | } |
| 1446 | EXPORT_SYMBOL(atomic_dec_and_mutex_lock); |