blob: 12166ec9b7e7e7d7c21f466ee861ba3ff405d042 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/* rwsem.c: R/W semaphores: contention handling functions
2 *
3 * Written by David Howells (dhowells@redhat.com).
4 * Derived from arch/i386/kernel/semaphore.c
Alex Shice6711f2013-02-05 21:11:55 +08005 *
6 * Writer lock-stealing by Alex Shi <alex.shi@intel.com>
Michel Lespinassefe6e6742013-05-07 06:45:59 -07007 * and Michel Lespinasse <walken@google.com>
Davidlohr Bueso4fc828e2014-05-02 11:24:15 -07008 *
9 * Optimistic spinning by Tim Chen <tim.c.chen@intel.com>
10 * and Davidlohr Bueso <davidlohr@hp.com>. Based on mutexes.
Linus Torvalds1da177e2005-04-16 15:20:36 -070011 */
12#include <linux/rwsem.h>
13#include <linux/sched.h>
14#include <linux/init.h>
Paul Gortmaker8bc3bcc2011-11-16 21:29:17 -050015#include <linux/export.h>
Davidlohr Bueso4fc828e2014-05-02 11:24:15 -070016#include <linux/sched/rt.h>
17
18#include "mcs_spinlock.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070019
Ingo Molnar4ea21762006-07-03 00:24:53 -070020/*
Tim Chen3cf2f342014-05-02 12:53:57 -070021 * Guide to the rw_semaphore's count field for common values.
22 * (32-bit case illustrated, similar for 64-bit)
23 *
24 * 0x0000000X (1) X readers active or attempting lock, no writer waiting
25 * X = #active_readers + #readers attempting to lock
26 * (X*ACTIVE_BIAS)
27 *
28 * 0x00000000 rwsem is unlocked, and no one is waiting for the lock or
29 * attempting to read lock or write lock.
30 *
31 * 0xffff000X (1) X readers active or attempting lock, with waiters for lock
32 * X = #active readers + # readers attempting lock
33 * (X*ACTIVE_BIAS + WAITING_BIAS)
34 * (2) 1 writer attempting lock, no waiters for lock
35 * X-1 = #active readers + #readers attempting lock
36 * ((X-1)*ACTIVE_BIAS + ACTIVE_WRITE_BIAS)
37 * (3) 1 writer active, no waiters for lock
38 * X-1 = #active readers + #readers attempting lock
39 * ((X-1)*ACTIVE_BIAS + ACTIVE_WRITE_BIAS)
40 *
41 * 0xffff0001 (1) 1 reader active or attempting lock, waiters for lock
42 * (WAITING_BIAS + ACTIVE_BIAS)
43 * (2) 1 writer active or attempting lock, no waiters for lock
44 * (ACTIVE_WRITE_BIAS)
45 *
46 * 0xffff0000 (1) There are writers or readers queued but none active
47 * or in the process of attempting lock.
48 * (WAITING_BIAS)
49 * Note: writer can attempt to steal lock for this count by adding
50 * ACTIVE_WRITE_BIAS in cmpxchg and checking the old count
51 *
52 * 0xfffe0001 (1) 1 writer active, or attempting lock. Waiters on queue.
53 * (ACTIVE_WRITE_BIAS + WAITING_BIAS)
54 *
55 * Note: Readers attempt to lock by adding ACTIVE_BIAS in down_read and checking
56 * the count becomes more than 0 for successful lock acquisition,
57 * i.e. the case where there are only readers or nobody has lock.
58 * (1st and 2nd case above).
59 *
60 * Writers attempt to lock by adding ACTIVE_WRITE_BIAS in down_write and
61 * checking the count becomes ACTIVE_WRITE_BIAS for successful lock
62 * acquisition (i.e. nobody else has lock or attempts lock). If
63 * unsuccessful, in rwsem_down_write_failed, we'll check to see if there
64 * are only waiters but none active (5th case above), and attempt to
65 * steal the lock.
66 *
67 */
68
69/*
Ingo Molnar4ea21762006-07-03 00:24:53 -070070 * Initialize an rwsem:
71 */
72void __init_rwsem(struct rw_semaphore *sem, const char *name,
73 struct lock_class_key *key)
74{
75#ifdef CONFIG_DEBUG_LOCK_ALLOC
76 /*
77 * Make sure we are not reinitializing a held semaphore:
78 */
79 debug_check_no_locks_freed((void *)sem, sizeof(*sem));
Peter Zijlstra4dfbb9d2006-10-11 01:45:14 -040080 lockdep_init_map(&sem->dep_map, name, key, 0);
Ingo Molnar4ea21762006-07-03 00:24:53 -070081#endif
82 sem->count = RWSEM_UNLOCKED_VALUE;
Thomas Gleixnerddb6c9b2010-02-24 09:54:54 +010083 raw_spin_lock_init(&sem->wait_lock);
Ingo Molnar4ea21762006-07-03 00:24:53 -070084 INIT_LIST_HEAD(&sem->wait_list);
Davidlohr Bueso5db6c6f2014-07-11 14:00:06 -070085#ifdef CONFIG_RWSEM_SPIN_ON_OWNER
Davidlohr Bueso4fc828e2014-05-02 11:24:15 -070086 sem->owner = NULL;
Jason Low4d9d9512014-07-14 10:27:50 -070087 osq_lock_init(&sem->osq);
Davidlohr Bueso4fc828e2014-05-02 11:24:15 -070088#endif
Ingo Molnar4ea21762006-07-03 00:24:53 -070089}
90
91EXPORT_SYMBOL(__init_rwsem);
92
Michel Lespinassee2d57f72013-05-07 06:45:49 -070093enum rwsem_waiter_type {
94 RWSEM_WAITING_FOR_WRITE,
95 RWSEM_WAITING_FOR_READ
96};
97
Linus Torvalds1da177e2005-04-16 15:20:36 -070098struct rwsem_waiter {
99 struct list_head list;
100 struct task_struct *task;
Michel Lespinassee2d57f72013-05-07 06:45:49 -0700101 enum rwsem_waiter_type type;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102};
103
Michel Lespinassefe6e6742013-05-07 06:45:59 -0700104enum rwsem_wake_type {
105 RWSEM_WAKE_ANY, /* Wake whatever's at head of wait list */
106 RWSEM_WAKE_READERS, /* Wake readers only */
107 RWSEM_WAKE_READ_OWNED /* Waker thread holds the read lock */
108};
Michel Lespinasse70bdc6e2010-08-09 17:21:17 -0700109
Linus Torvalds1da177e2005-04-16 15:20:36 -0700110/*
111 * handle the lock release when processes blocked on it that can now run
112 * - if we come here from up_xxxx(), then:
113 * - the 'active part' of count (&0x0000ffff) reached 0 (but may have changed)
114 * - the 'waiting part' of count (&0xffff0000) is -ve (and will still be so)
Michel Lespinasse345af7b2010-08-09 17:21:15 -0700115 * - there must be someone on the queue
Linus Torvalds1da177e2005-04-16 15:20:36 -0700116 * - the spinlock must be held by the caller
117 * - woken process blocks are discarded from the list after having task zeroed
118 * - writers are only woken if downgrading is false
119 */
Michel Lespinasse70bdc6e2010-08-09 17:21:17 -0700120static struct rw_semaphore *
Michel Lespinassefe6e6742013-05-07 06:45:59 -0700121__rwsem_do_wake(struct rw_semaphore *sem, enum rwsem_wake_type wake_type)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700122{
123 struct rwsem_waiter *waiter;
124 struct task_struct *tsk;
125 struct list_head *next;
Davidlohr Buesob5f54182013-05-07 06:46:02 -0700126 long oldcount, woken, loop, adjustment;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700127
Michel Lespinasse345af7b2010-08-09 17:21:15 -0700128 waiter = list_entry(sem->wait_list.next, struct rwsem_waiter, list);
Michel Lespinasse8cf53222013-05-07 06:45:58 -0700129 if (waiter->type == RWSEM_WAITING_FOR_WRITE) {
Michel Lespinassefe6e6742013-05-07 06:45:59 -0700130 if (wake_type == RWSEM_WAKE_ANY)
Michel Lespinasse8cf53222013-05-07 06:45:58 -0700131 /* Wake writer at the front of the queue, but do not
132 * grant it the lock yet as we want other writers
133 * to be able to steal it. Readers, on the other hand,
134 * will block as they will notice the queued writer.
135 */
136 wake_up_process(waiter->task);
Michel Lespinasse345af7b2010-08-09 17:21:15 -0700137 goto out;
Michel Lespinasse8cf53222013-05-07 06:45:58 -0700138 }
Michel Lespinasse345af7b2010-08-09 17:21:15 -0700139
Michel Lespinassefe6e6742013-05-07 06:45:59 -0700140 /* Writers might steal the lock before we grant it to the next reader.
141 * We prefer to do the first reader grant before counting readers
142 * so we can bail out early if a writer stole the lock.
Michel Lespinasse70bdc6e2010-08-09 17:21:17 -0700143 */
Michel Lespinassefe6e6742013-05-07 06:45:59 -0700144 adjustment = 0;
145 if (wake_type != RWSEM_WAKE_READ_OWNED) {
146 adjustment = RWSEM_ACTIVE_READ_BIAS;
147 try_reader_grant:
148 oldcount = rwsem_atomic_update(adjustment, sem) - adjustment;
149 if (unlikely(oldcount < RWSEM_WAITING_BIAS)) {
150 /* A writer stole the lock. Undo our reader grant. */
151 if (rwsem_atomic_update(-adjustment, sem) &
152 RWSEM_ACTIVE_MASK)
153 goto out;
154 /* Last active locker left. Retry waking readers. */
155 goto try_reader_grant;
156 }
157 }
Michel Lespinasse345af7b2010-08-09 17:21:15 -0700158
Michel Lespinasse345af7b2010-08-09 17:21:15 -0700159 /* Grant an infinite number of read locks to the readers at the front
160 * of the queue. Note we increment the 'active part' of the count by
161 * the number of readers before waking any processes up.
162 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700163 woken = 0;
164 do {
165 woken++;
166
167 if (waiter->list.next == &sem->wait_list)
168 break;
169
170 waiter = list_entry(waiter->list.next,
171 struct rwsem_waiter, list);
172
Michel Lespinassee2d57f72013-05-07 06:45:49 -0700173 } while (waiter->type != RWSEM_WAITING_FOR_WRITE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700174
Michel Lespinassefe6e6742013-05-07 06:45:59 -0700175 adjustment = woken * RWSEM_ACTIVE_READ_BIAS - adjustment;
Michel Lespinassee2d57f72013-05-07 06:45:49 -0700176 if (waiter->type != RWSEM_WAITING_FOR_WRITE)
Michel Lespinassefd41b332010-08-09 17:21:18 -0700177 /* hit end of list above */
178 adjustment -= RWSEM_WAITING_BIAS;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700179
Michel Lespinassefe6e6742013-05-07 06:45:59 -0700180 if (adjustment)
181 rwsem_atomic_add(adjustment, sem);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700182
183 next = sem->wait_list.next;
Michel Lespinasse8cf53222013-05-07 06:45:58 -0700184 loop = woken;
185 do {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700186 waiter = list_entry(next, struct rwsem_waiter, list);
187 next = waiter->list.next;
188 tsk = waiter->task;
akpm@osdl.orgd59dd462005-05-01 08:58:47 -0700189 smp_mb();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700190 waiter->task = NULL;
191 wake_up_process(tsk);
192 put_task_struct(tsk);
Michel Lespinasse8cf53222013-05-07 06:45:58 -0700193 } while (--loop);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700194
195 sem->wait_list.next = next;
196 next->prev = &sem->wait_list;
197
198 out:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700199 return sem;
Alex Shice6711f2013-02-05 21:11:55 +0800200}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700201
Linus Torvalds1da177e2005-04-16 15:20:36 -0700202/*
Davidlohr Bueso4fc828e2014-05-02 11:24:15 -0700203 * Wait for the read lock to be granted
Linus Torvalds1da177e2005-04-16 15:20:36 -0700204 */
Andi Kleen3ebae4f2014-02-08 08:52:05 +0100205__visible
Michel Lespinasse1e782772013-05-07 06:45:51 -0700206struct rw_semaphore __sched *rwsem_down_read_failed(struct rw_semaphore *sem)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700207{
Davidlohr Buesob5f54182013-05-07 06:46:02 -0700208 long count, adjustment = -RWSEM_ACTIVE_READ_BIAS;
Michel Lespinassea8618a02010-08-09 17:21:20 -0700209 struct rwsem_waiter waiter;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700210 struct task_struct *tsk = current;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700211
Linus Torvalds1da177e2005-04-16 15:20:36 -0700212 /* set up my own style of waitqueue */
Michel Lespinassea8618a02010-08-09 17:21:20 -0700213 waiter.task = tsk;
Michel Lespinasseda169222013-05-07 06:45:52 -0700214 waiter.type = RWSEM_WAITING_FOR_READ;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700215 get_task_struct(tsk);
216
Michel Lespinassef7dd1ce2013-05-07 06:45:50 -0700217 raw_spin_lock_irq(&sem->wait_lock);
Michel Lespinassefd41b332010-08-09 17:21:18 -0700218 if (list_empty(&sem->wait_list))
219 adjustment += RWSEM_WAITING_BIAS;
Michel Lespinassea8618a02010-08-09 17:21:20 -0700220 list_add_tail(&waiter.list, &sem->wait_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700221
Michel Lespinasse70bdc6e2010-08-09 17:21:17 -0700222 /* we're now waiting on the lock, but no longer actively locking */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700223 count = rwsem_atomic_update(adjustment, sem);
224
Michel Lespinasse25c39322013-05-07 06:46:00 -0700225 /* If there are no active locks, wake the front queued process(es).
226 *
227 * If there are no writers and we are first in the queue,
228 * wake our own waiter to join the existing active readers !
229 */
230 if (count == RWSEM_WAITING_BIAS ||
231 (count > RWSEM_WAITING_BIAS &&
232 adjustment != -RWSEM_ACTIVE_READ_BIAS))
Michel Lespinassefe6e6742013-05-07 06:45:59 -0700233 sem = __rwsem_do_wake(sem, RWSEM_WAKE_ANY);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700234
Thomas Gleixnerddb6c9b2010-02-24 09:54:54 +0100235 raw_spin_unlock_irq(&sem->wait_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700236
237 /* wait to be given the lock */
Michel Lespinassef7dd1ce2013-05-07 06:45:50 -0700238 while (true) {
239 set_task_state(tsk, TASK_UNINTERRUPTIBLE);
Michel Lespinassea8618a02010-08-09 17:21:20 -0700240 if (!waiter.task)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700241 break;
242 schedule();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700243 }
244
245 tsk->state = TASK_RUNNING;
246
247 return sem;
248}
Davidlohr Buesodb0e7162014-09-11 22:34:25 -0700249EXPORT_SYMBOL(rwsem_down_read_failed);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700250
Davidlohr Bueso4fc828e2014-05-02 11:24:15 -0700251static inline bool rwsem_try_write_lock(long count, struct rw_semaphore *sem)
252{
253 if (!(count & RWSEM_ACTIVE_MASK)) {
254 /* try acquiring the write lock */
255 if (sem->count == RWSEM_WAITING_BIAS &&
256 cmpxchg(&sem->count, RWSEM_WAITING_BIAS,
257 RWSEM_ACTIVE_WRITE_BIAS) == RWSEM_WAITING_BIAS) {
258 if (!list_is_singular(&sem->wait_list))
259 rwsem_atomic_update(RWSEM_WAITING_BIAS, sem);
260 return true;
261 }
262 }
263 return false;
264}
265
Davidlohr Bueso5db6c6f2014-07-11 14:00:06 -0700266#ifdef CONFIG_RWSEM_SPIN_ON_OWNER
Linus Torvalds1da177e2005-04-16 15:20:36 -0700267/*
Davidlohr Bueso4fc828e2014-05-02 11:24:15 -0700268 * Try to acquire write lock before the writer has been put on wait queue.
269 */
270static inline bool rwsem_try_write_lock_unqueued(struct rw_semaphore *sem)
271{
272 long old, count = ACCESS_ONCE(sem->count);
273
274 while (true) {
275 if (!(count == 0 || count == RWSEM_WAITING_BIAS))
276 return false;
277
278 old = cmpxchg(&sem->count, count, count + RWSEM_ACTIVE_WRITE_BIAS);
279 if (old == count)
280 return true;
281
282 count = old;
283 }
284}
285
286static inline bool rwsem_can_spin_on_owner(struct rw_semaphore *sem)
287{
288 struct task_struct *owner;
Jason Low37e95622014-07-04 20:49:32 -0700289 bool on_cpu = false;
Davidlohr Bueso4fc828e2014-05-02 11:24:15 -0700290
291 if (need_resched())
Jason Low37e95622014-07-04 20:49:32 -0700292 return false;
Davidlohr Bueso4fc828e2014-05-02 11:24:15 -0700293
294 rcu_read_lock();
295 owner = ACCESS_ONCE(sem->owner);
296 if (owner)
297 on_cpu = owner->on_cpu;
298 rcu_read_unlock();
299
300 /*
Jason Low37e95622014-07-04 20:49:32 -0700301 * If sem->owner is not set, yet we have just recently entered the
302 * slowpath, then there is a possibility reader(s) may have the lock.
303 * To be safe, avoid spinning in these situations.
Davidlohr Bueso4fc828e2014-05-02 11:24:15 -0700304 */
305 return on_cpu;
306}
307
308static inline bool owner_running(struct rw_semaphore *sem,
309 struct task_struct *owner)
310{
311 if (sem->owner != owner)
312 return false;
313
314 /*
315 * Ensure we emit the owner->on_cpu, dereference _after_ checking
316 * sem->owner still matches owner, if that fails, owner might
317 * point to free()d memory, if it still matches, the rcu_read_lock()
318 * ensures the memory stays valid.
319 */
320 barrier();
321
322 return owner->on_cpu;
323}
324
325static noinline
326bool rwsem_spin_on_owner(struct rw_semaphore *sem, struct task_struct *owner)
327{
328 rcu_read_lock();
329 while (owner_running(sem, owner)) {
330 if (need_resched())
331 break;
332
Davidlohr Bueso3a6bfbc2014-06-29 15:09:33 -0700333 cpu_relax_lowlatency();
Davidlohr Bueso4fc828e2014-05-02 11:24:15 -0700334 }
335 rcu_read_unlock();
336
337 /*
338 * We break out the loop above on need_resched() or when the
339 * owner changed, which is a sign for heavy contention. Return
340 * success only when sem->owner is NULL.
341 */
342 return sem->owner == NULL;
343}
344
345static bool rwsem_optimistic_spin(struct rw_semaphore *sem)
346{
347 struct task_struct *owner;
348 bool taken = false;
349
350 preempt_disable();
351
352 /* sem->wait_lock should not be held when doing optimistic spinning */
353 if (!rwsem_can_spin_on_owner(sem))
354 goto done;
355
356 if (!osq_lock(&sem->osq))
357 goto done;
358
359 while (true) {
360 owner = ACCESS_ONCE(sem->owner);
361 if (owner && !rwsem_spin_on_owner(sem, owner))
362 break;
363
364 /* wait_lock will be acquired if write_lock is obtained */
365 if (rwsem_try_write_lock_unqueued(sem)) {
366 taken = true;
367 break;
368 }
369
370 /*
371 * When there's no owner, we might have preempted between the
372 * owner acquiring the lock and setting the owner field. If
373 * we're an RT task that will live-lock because we won't let
374 * the owner complete.
375 */
376 if (!owner && (need_resched() || rt_task(current)))
377 break;
378
379 /*
380 * The cpu_relax() call is a compiler barrier which forces
381 * everything in this loop to be re-loaded. We don't need
382 * memory barriers as we'll eventually observe the right
383 * values at the cost of a few extra spins.
384 */
Davidlohr Bueso3a6bfbc2014-06-29 15:09:33 -0700385 cpu_relax_lowlatency();
Davidlohr Bueso4fc828e2014-05-02 11:24:15 -0700386 }
387 osq_unlock(&sem->osq);
388done:
389 preempt_enable();
390 return taken;
391}
392
393#else
394static bool rwsem_optimistic_spin(struct rw_semaphore *sem)
395{
396 return false;
397}
398#endif
399
400/*
401 * Wait until we successfully acquire the write lock
Linus Torvalds1da177e2005-04-16 15:20:36 -0700402 */
Andi Kleen3ebae4f2014-02-08 08:52:05 +0100403__visible
Thomas Gleixnerd1233752011-01-26 21:32:01 +0100404struct rw_semaphore __sched *rwsem_down_write_failed(struct rw_semaphore *sem)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700405{
Davidlohr Bueso4fc828e2014-05-02 11:24:15 -0700406 long count;
407 bool waiting = true; /* any queued threads before us */
Michel Lespinasse1e782772013-05-07 06:45:51 -0700408 struct rwsem_waiter waiter;
Michel Lespinasse1e782772013-05-07 06:45:51 -0700409
Davidlohr Bueso4fc828e2014-05-02 11:24:15 -0700410 /* undo write bias from down_write operation, stop active locking */
411 count = rwsem_atomic_update(-RWSEM_ACTIVE_WRITE_BIAS, sem);
412
413 /* do optimistic spinning and steal lock if possible */
414 if (rwsem_optimistic_spin(sem))
415 return sem;
416
417 /*
418 * Optimistic spinning failed, proceed to the slowpath
419 * and block until we can acquire the sem.
420 */
421 waiter.task = current;
Michel Lespinasse023fe4f2013-05-07 06:45:53 -0700422 waiter.type = RWSEM_WAITING_FOR_WRITE;
Michel Lespinasse1e782772013-05-07 06:45:51 -0700423
424 raw_spin_lock_irq(&sem->wait_lock);
Davidlohr Bueso4fc828e2014-05-02 11:24:15 -0700425
426 /* account for this before adding a new element to the list */
Michel Lespinasse1e782772013-05-07 06:45:51 -0700427 if (list_empty(&sem->wait_list))
Davidlohr Bueso4fc828e2014-05-02 11:24:15 -0700428 waiting = false;
429
Michel Lespinasse1e782772013-05-07 06:45:51 -0700430 list_add_tail(&waiter.list, &sem->wait_list);
431
432 /* we're now waiting on the lock, but no longer actively locking */
Davidlohr Bueso4fc828e2014-05-02 11:24:15 -0700433 if (waiting) {
434 count = ACCESS_ONCE(sem->count);
Michel Lespinasse1e782772013-05-07 06:45:51 -0700435
Davidlohr Bueso4fc828e2014-05-02 11:24:15 -0700436 /*
Andrew Morton0cc3d012014-06-04 20:19:48 +0200437 * If there were already threads queued before us and there are
438 * no active writers, the lock must be read owned; so we try to
439 * wake any read locks that were queued ahead of us.
Davidlohr Bueso4fc828e2014-05-02 11:24:15 -0700440 */
441 if (count > RWSEM_WAITING_BIAS)
442 sem = __rwsem_do_wake(sem, RWSEM_WAKE_READERS);
443
444 } else
445 count = rwsem_atomic_update(RWSEM_WAITING_BIAS, sem);
Michel Lespinasse1e782772013-05-07 06:45:51 -0700446
Michel Lespinasse023fe4f2013-05-07 06:45:53 -0700447 /* wait until we successfully acquire the lock */
Davidlohr Bueso4fc828e2014-05-02 11:24:15 -0700448 set_current_state(TASK_UNINTERRUPTIBLE);
Michel Lespinasse1e782772013-05-07 06:45:51 -0700449 while (true) {
Davidlohr Bueso4fc828e2014-05-02 11:24:15 -0700450 if (rwsem_try_write_lock(count, sem))
451 break;
Michel Lespinasse1e782772013-05-07 06:45:51 -0700452 raw_spin_unlock_irq(&sem->wait_lock);
Michel Lespinassea7d2c572013-05-07 06:45:56 -0700453
454 /* Block until there are no active lockers. */
455 do {
456 schedule();
Davidlohr Bueso4fc828e2014-05-02 11:24:15 -0700457 set_current_state(TASK_UNINTERRUPTIBLE);
Michel Lespinasse9b0fc9c2013-05-07 06:45:57 -0700458 } while ((count = sem->count) & RWSEM_ACTIVE_MASK);
Michel Lespinassea7d2c572013-05-07 06:45:56 -0700459
Michel Lespinasse023fe4f2013-05-07 06:45:53 -0700460 raw_spin_lock_irq(&sem->wait_lock);
Michel Lespinasse1e782772013-05-07 06:45:51 -0700461 }
Davidlohr Bueso4fc828e2014-05-02 11:24:15 -0700462 __set_current_state(TASK_RUNNING);
Michel Lespinasse1e782772013-05-07 06:45:51 -0700463
Michel Lespinasse023fe4f2013-05-07 06:45:53 -0700464 list_del(&waiter.list);
465 raw_spin_unlock_irq(&sem->wait_lock);
Michel Lespinasse1e782772013-05-07 06:45:51 -0700466
467 return sem;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700468}
Davidlohr Buesodb0e7162014-09-11 22:34:25 -0700469EXPORT_SYMBOL(rwsem_down_write_failed);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700470
471/*
472 * handle waking up a waiter on the semaphore
473 * - up_read/up_write has decremented the active part of count if we come here
474 */
Andi Kleen3ebae4f2014-02-08 08:52:05 +0100475__visible
Thomas Gleixnerd1233752011-01-26 21:32:01 +0100476struct rw_semaphore *rwsem_wake(struct rw_semaphore *sem)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700477{
478 unsigned long flags;
479
Thomas Gleixnerddb6c9b2010-02-24 09:54:54 +0100480 raw_spin_lock_irqsave(&sem->wait_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700481
482 /* do nothing if list empty */
483 if (!list_empty(&sem->wait_list))
Michel Lespinasse70bdc6e2010-08-09 17:21:17 -0700484 sem = __rwsem_do_wake(sem, RWSEM_WAKE_ANY);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700485
Thomas Gleixnerddb6c9b2010-02-24 09:54:54 +0100486 raw_spin_unlock_irqrestore(&sem->wait_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700487
Linus Torvalds1da177e2005-04-16 15:20:36 -0700488 return sem;
489}
Davidlohr Buesodb0e7162014-09-11 22:34:25 -0700490EXPORT_SYMBOL(rwsem_wake);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700491
492/*
493 * downgrade a write lock into a read lock
494 * - caller incremented waiting part of count and discovered it still negative
495 * - just wake up any readers at the front of the queue
496 */
Andi Kleen3ebae4f2014-02-08 08:52:05 +0100497__visible
Thomas Gleixnerd1233752011-01-26 21:32:01 +0100498struct rw_semaphore *rwsem_downgrade_wake(struct rw_semaphore *sem)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700499{
500 unsigned long flags;
501
Thomas Gleixnerddb6c9b2010-02-24 09:54:54 +0100502 raw_spin_lock_irqsave(&sem->wait_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700503
504 /* do nothing if list empty */
505 if (!list_empty(&sem->wait_list))
Michel Lespinasse70bdc6e2010-08-09 17:21:17 -0700506 sem = __rwsem_do_wake(sem, RWSEM_WAKE_READ_OWNED);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700507
Thomas Gleixnerddb6c9b2010-02-24 09:54:54 +0100508 raw_spin_unlock_irqrestore(&sem->wait_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700509
Linus Torvalds1da177e2005-04-16 15:20:36 -0700510 return sem;
511}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700512EXPORT_SYMBOL(rwsem_downgrade_wake);