1 /* rwsem.c: R/W semaphores: contention handling functions
3 * Written by David Howells (dhowells@redhat.com).
4 * Derived from arch/i386/kernel/semaphore.c
6 * Writer lock-stealing by Alex Shi <alex.shi@intel.com>
8 #include <linux/rwsem.h>
9 #include <linux/sched.h>
10 #include <linux/init.h>
11 #include <linux/export.h>
14 * Initialize an rwsem:
16 void __init_rwsem(struct rw_semaphore
*sem
, const char *name
,
17 struct lock_class_key
*key
)
19 #ifdef CONFIG_DEBUG_LOCK_ALLOC
21 * Make sure we are not reinitializing a held semaphore:
23 debug_check_no_locks_freed((void *)sem
, sizeof(*sem
));
24 lockdep_init_map(&sem
->dep_map
, name
, key
, 0);
26 sem
->count
= RWSEM_UNLOCKED_VALUE
;
27 raw_spin_lock_init(&sem
->wait_lock
);
28 INIT_LIST_HEAD(&sem
->wait_list
);
31 EXPORT_SYMBOL(__init_rwsem
);
34 struct list_head list
;
35 struct task_struct
*task
;
37 #define RWSEM_WAITING_FOR_READ 0x00000001
38 #define RWSEM_WAITING_FOR_WRITE 0x00000002
41 /* Wake types for __rwsem_do_wake(). Note that RWSEM_WAKE_NO_ACTIVE and
42 * RWSEM_WAKE_READ_OWNED imply that the spinlock must have been kept held
43 * since the rwsem value was observed.
45 #define RWSEM_WAKE_ANY 0 /* Wake whatever's at head of wait list */
46 #define RWSEM_WAKE_NO_ACTIVE 1 /* rwsem was observed with no active thread */
47 #define RWSEM_WAKE_READ_OWNED 2 /* rwsem was observed to be read owned */
50 * handle the lock release when processes blocked on it that can now run
51 * - if we come here from up_xxxx(), then:
52 * - the 'active part' of count (&0x0000ffff) reached 0 (but may have changed)
53 * - the 'waiting part' of count (&0xffff0000) is -ve (and will still be so)
54 * - there must be someone on the queue
55 * - the spinlock must be held by the caller
56 * - woken process blocks are discarded from the list after having task zeroed
57 * - writers are only woken if downgrading is false
59 static struct rw_semaphore
*
60 __rwsem_do_wake(struct rw_semaphore
*sem
, int wake_type
)
62 struct rwsem_waiter
*waiter
;
63 struct task_struct
*tsk
;
64 struct list_head
*next
;
65 signed long woken
, loop
, adjustment
;
67 waiter
= list_entry(sem
->wait_list
.next
, struct rwsem_waiter
, list
);
68 if (!(waiter
->flags
& RWSEM_WAITING_FOR_WRITE
))
71 if (wake_type
== RWSEM_WAKE_READ_OWNED
)
72 /* Another active reader was observed, so wakeup is not
73 * likely to succeed. Save the atomic op.
77 /* Wake up the writing waiter and let the task grab the sem: */
78 wake_up_process(waiter
->task
);
82 /* If we come here from up_xxxx(), another thread might have reached
83 * rwsem_down_failed_common() before we acquired the spinlock and
84 * woken up a waiter, making it now active. We prefer to check for
85 * this first in order to not spend too much time with the spinlock
86 * held if we're not going to be able to wake up readers in the end.
88 * Note that we do not need to update the rwsem count: any writer
89 * trying to acquire rwsem will run rwsem_down_write_failed() due
90 * to the waiting threads and block trying to acquire the spinlock.
92 * We use a dummy atomic update in order to acquire the cache line
93 * exclusively since we expect to succeed and run the final rwsem
94 * count adjustment pretty soon.
96 if (wake_type
== RWSEM_WAKE_ANY
&&
97 rwsem_atomic_update(0, sem
) < RWSEM_WAITING_BIAS
)
98 /* Someone grabbed the sem for write already */
101 /* Grant an infinite number of read locks to the readers at the front
102 * of the queue. Note we increment the 'active part' of the count by
103 * the number of readers before waking any processes up.
109 if (waiter
->list
.next
== &sem
->wait_list
)
112 waiter
= list_entry(waiter
->list
.next
,
113 struct rwsem_waiter
, list
);
115 } while (waiter
->flags
& RWSEM_WAITING_FOR_READ
);
117 adjustment
= woken
* RWSEM_ACTIVE_READ_BIAS
;
118 if (waiter
->flags
& RWSEM_WAITING_FOR_READ
)
119 /* hit end of list above */
120 adjustment
-= RWSEM_WAITING_BIAS
;
122 rwsem_atomic_add(adjustment
, sem
);
124 next
= sem
->wait_list
.next
;
125 for (loop
= woken
; loop
> 0; loop
--) {
126 waiter
= list_entry(next
, struct rwsem_waiter
, list
);
127 next
= waiter
->list
.next
;
131 wake_up_process(tsk
);
132 put_task_struct(tsk
);
135 sem
->wait_list
.next
= next
;
136 next
->prev
= &sem
->wait_list
;
142 /* Try to get write sem, caller holds sem->wait_lock: */
143 static int try_get_writer_sem(struct rw_semaphore
*sem
,
144 struct rwsem_waiter
*waiter
)
146 struct rwsem_waiter
*fwaiter
;
147 long oldcount
, adjustment
;
149 /* only steal when first waiter is writing */
150 fwaiter
= list_entry(sem
->wait_list
.next
, struct rwsem_waiter
, list
);
151 if (!(fwaiter
->flags
& RWSEM_WAITING_FOR_WRITE
))
154 adjustment
= RWSEM_ACTIVE_WRITE_BIAS
;
155 /* Only one waiter in the queue: */
156 if (fwaiter
== waiter
&& waiter
->list
.next
== &sem
->wait_list
)
157 adjustment
-= RWSEM_WAITING_BIAS
;
160 oldcount
= rwsem_atomic_update(adjustment
, sem
) - adjustment
;
161 if (!(oldcount
& RWSEM_ACTIVE_MASK
)) {
162 /* No active lock: */
163 struct task_struct
*tsk
= waiter
->task
;
165 list_del(&waiter
->list
);
167 put_task_struct(tsk
);
168 tsk
->state
= TASK_RUNNING
;
171 /* some one grabbed the sem already */
172 if (rwsem_atomic_update(-adjustment
, sem
) & RWSEM_ACTIVE_MASK
)
174 goto try_again_write
;
178 * wait for a lock to be granted
180 static struct rw_semaphore __sched
*
181 rwsem_down_failed_common(struct rw_semaphore
*sem
,
182 unsigned int flags
, signed long adjustment
)
184 struct rwsem_waiter waiter
;
185 struct task_struct
*tsk
= current
;
188 set_task_state(tsk
, TASK_UNINTERRUPTIBLE
);
190 /* set up my own style of waitqueue */
191 raw_spin_lock_irq(&sem
->wait_lock
);
193 waiter
.flags
= flags
;
194 get_task_struct(tsk
);
196 if (list_empty(&sem
->wait_list
))
197 adjustment
+= RWSEM_WAITING_BIAS
;
198 list_add_tail(&waiter
.list
, &sem
->wait_list
);
200 /* we're now waiting on the lock, but no longer actively locking */
201 count
= rwsem_atomic_update(adjustment
, sem
);
203 /* If there are no active locks, wake the front queued process(es) up.
205 * Alternatively, if we're called from a failed down_write(), there
206 * were already threads queued before us and there are no active
207 * writers, the lock must be read owned; so we try to wake any read
208 * locks that were queued ahead of us. */
209 if (count
== RWSEM_WAITING_BIAS
)
210 sem
= __rwsem_do_wake(sem
, RWSEM_WAKE_NO_ACTIVE
);
211 else if (count
> RWSEM_WAITING_BIAS
&&
212 adjustment
== -RWSEM_ACTIVE_WRITE_BIAS
)
213 sem
= __rwsem_do_wake(sem
, RWSEM_WAKE_READ_OWNED
);
215 raw_spin_unlock_irq(&sem
->wait_lock
);
217 /* wait to be given the lock */
222 raw_spin_lock_irq(&sem
->wait_lock
);
223 /* Try to get the writer sem, may steal from the head writer: */
224 if (flags
== RWSEM_WAITING_FOR_WRITE
)
225 if (try_get_writer_sem(sem
, &waiter
)) {
226 raw_spin_unlock_irq(&sem
->wait_lock
);
229 raw_spin_unlock_irq(&sem
->wait_lock
);
231 set_task_state(tsk
, TASK_UNINTERRUPTIBLE
);
234 tsk
->state
= TASK_RUNNING
;
240 * wait for the read lock to be granted
242 struct rw_semaphore __sched
*rwsem_down_read_failed(struct rw_semaphore
*sem
)
244 return rwsem_down_failed_common(sem
, RWSEM_WAITING_FOR_READ
,
245 -RWSEM_ACTIVE_READ_BIAS
);
249 * wait for the write lock to be granted
251 struct rw_semaphore __sched
*rwsem_down_write_failed(struct rw_semaphore
*sem
)
253 return rwsem_down_failed_common(sem
, RWSEM_WAITING_FOR_WRITE
,
254 -RWSEM_ACTIVE_WRITE_BIAS
);
258 * handle waking up a waiter on the semaphore
259 * - up_read/up_write has decremented the active part of count if we come here
261 struct rw_semaphore
*rwsem_wake(struct rw_semaphore
*sem
)
265 raw_spin_lock_irqsave(&sem
->wait_lock
, flags
);
267 /* do nothing if list empty */
268 if (!list_empty(&sem
->wait_list
))
269 sem
= __rwsem_do_wake(sem
, RWSEM_WAKE_ANY
);
271 raw_spin_unlock_irqrestore(&sem
->wait_lock
, flags
);
277 * downgrade a write lock into a read lock
278 * - caller incremented waiting part of count and discovered it still negative
279 * - just wake up any readers at the front of the queue
281 struct rw_semaphore
*rwsem_downgrade_wake(struct rw_semaphore
*sem
)
285 raw_spin_lock_irqsave(&sem
->wait_lock
, flags
);
287 /* do nothing if list empty */
288 if (!list_empty(&sem
->wait_list
))
289 sem
= __rwsem_do_wake(sem
, RWSEM_WAKE_READ_OWNED
);
291 raw_spin_unlock_irqrestore(&sem
->wait_lock
, flags
);
296 EXPORT_SYMBOL(rwsem_down_read_failed
);
297 EXPORT_SYMBOL(rwsem_down_write_failed
);
298 EXPORT_SYMBOL(rwsem_wake
);
299 EXPORT_SYMBOL(rwsem_downgrade_wake
);