1 /* rwsem-spinlock.c: R/W semaphores: contention handling functions for
2 * generic spinlock implementation
4 * Copyright (c) 2001 David Howells (dhowells@redhat.com).
5 * - Derived partially from idea by Andrea Arcangeli <andrea@suse.de>
6 * - Derived also from comments by Linus
8 #include <linux/rwsem.h>
9 #include <linux/sched.h>
10 #include <linux/export.h>
12 enum rwsem_waiter_type
{
13 RWSEM_WAITING_FOR_WRITE
,
14 RWSEM_WAITING_FOR_READ
18 struct list_head list
;
19 struct task_struct
*task
;
20 enum rwsem_waiter_type type
;
23 int rwsem_is_locked(struct rw_semaphore
*sem
)
28 if (raw_spin_trylock_irqsave(&sem
->wait_lock
, flags
)) {
29 ret
= (sem
->activity
!= 0);
30 raw_spin_unlock_irqrestore(&sem
->wait_lock
, flags
);
34 EXPORT_SYMBOL(rwsem_is_locked
);
37 * initialise the semaphore
39 void __init_rwsem(struct rw_semaphore
*sem
, const char *name
,
40 struct lock_class_key
*key
)
42 #ifdef CONFIG_DEBUG_LOCK_ALLOC
44 * Make sure we are not reinitializing a held semaphore:
46 debug_check_no_locks_freed((void *)sem
, sizeof(*sem
));
47 lockdep_init_map(&sem
->dep_map
, name
, key
, 0);
50 raw_spin_lock_init(&sem
->wait_lock
);
51 INIT_LIST_HEAD(&sem
->wait_list
);
53 EXPORT_SYMBOL(__init_rwsem
);
56 * handle the lock release when processes blocked on it that can now run
57 * - if we come here, then:
58 * - the 'active count' _reached_ zero
59 * - the 'waiting count' is non-zero
60 * - the spinlock must be held by the caller
61 * - woken process blocks are discarded from the list after having task zeroed
62 * - writers are only woken if wakewrite is non-zero
64 static inline struct rw_semaphore
*
65 __rwsem_do_wake(struct rw_semaphore
*sem
, int wakewrite
)
67 struct rwsem_waiter
*waiter
;
68 struct task_struct
*tsk
;
71 waiter
= list_entry(sem
->wait_list
.next
, struct rwsem_waiter
, list
);
73 if (waiter
->type
== RWSEM_WAITING_FOR_WRITE
) {
75 /* Wake up a writer. Note that we do not grant it the
76 * lock - it will have to acquire it when it runs. */
77 wake_up_process(waiter
->task
);
81 /* grant an infinite number of read locks to the front of the queue */
84 struct list_head
*next
= waiter
->list
.next
;
86 list_del(&waiter
->list
);
93 if (next
== &sem
->wait_list
)
95 waiter
= list_entry(next
, struct rwsem_waiter
, list
);
96 } while (waiter
->type
!= RWSEM_WAITING_FOR_WRITE
);
98 sem
->activity
+= woken
;
105 * wake a single writer
107 static inline struct rw_semaphore
*
108 __rwsem_wake_one_writer(struct rw_semaphore
*sem
)
110 struct rwsem_waiter
*waiter
;
112 waiter
= list_entry(sem
->wait_list
.next
, struct rwsem_waiter
, list
);
113 wake_up_process(waiter
->task
);
119 * get a read lock on the semaphore
121 void __sched
__down_read(struct rw_semaphore
*sem
)
123 struct rwsem_waiter waiter
;
124 struct task_struct
*tsk
;
127 raw_spin_lock_irqsave(&sem
->wait_lock
, flags
);
129 if (sem
->activity
>= 0 && list_empty(&sem
->wait_list
)) {
132 raw_spin_unlock_irqrestore(&sem
->wait_lock
, flags
);
137 set_task_state(tsk
, TASK_UNINTERRUPTIBLE
);
139 /* set up my own style of waitqueue */
141 waiter
.type
= RWSEM_WAITING_FOR_READ
;
142 get_task_struct(tsk
);
144 list_add_tail(&waiter
.list
, &sem
->wait_list
);
146 /* we don't need to touch the semaphore struct anymore */
147 raw_spin_unlock_irqrestore(&sem
->wait_lock
, flags
);
149 /* wait to be given the lock */
154 set_task_state(tsk
, TASK_UNINTERRUPTIBLE
);
157 tsk
->state
= TASK_RUNNING
;
163 * trylock for reading -- returns 1 if successful, 0 if contention
165 int __down_read_trylock(struct rw_semaphore
*sem
)
171 raw_spin_lock_irqsave(&sem
->wait_lock
, flags
);
173 if (sem
->activity
>= 0 && list_empty(&sem
->wait_list
)) {
179 raw_spin_unlock_irqrestore(&sem
->wait_lock
, flags
);
185 * get a write lock on the semaphore
187 void __sched
__down_write_nested(struct rw_semaphore
*sem
, int subclass
)
189 struct rwsem_waiter waiter
;
190 struct task_struct
*tsk
;
193 raw_spin_lock_irqsave(&sem
->wait_lock
, flags
);
195 /* set up my own style of waitqueue */
198 waiter
.type
= RWSEM_WAITING_FOR_WRITE
;
199 list_add_tail(&waiter
.list
, &sem
->wait_list
);
201 /* wait for someone to release the lock */
204 * That is the key to support write lock stealing: allows the
205 * task already on CPU to get the lock soon rather than put
206 * itself into sleep and waiting for system woke it or someone
207 * else in the head of the wait list up.
209 if (sem
->activity
== 0)
211 set_task_state(tsk
, TASK_UNINTERRUPTIBLE
);
212 raw_spin_unlock_irqrestore(&sem
->wait_lock
, flags
);
214 raw_spin_lock_irqsave(&sem
->wait_lock
, flags
);
218 list_del(&waiter
.list
);
220 raw_spin_unlock_irqrestore(&sem
->wait_lock
, flags
);
223 void __sched
__down_write(struct rw_semaphore
*sem
)
225 __down_write_nested(sem
, 0);
229 * trylock for writing -- returns 1 if successful, 0 if contention
231 int __down_write_trylock(struct rw_semaphore
*sem
)
236 raw_spin_lock_irqsave(&sem
->wait_lock
, flags
);
238 if (sem
->activity
== 0) {
244 raw_spin_unlock_irqrestore(&sem
->wait_lock
, flags
);
250 * release a read lock on the semaphore
252 void __up_read(struct rw_semaphore
*sem
)
256 raw_spin_lock_irqsave(&sem
->wait_lock
, flags
);
258 if (--sem
->activity
== 0 && !list_empty(&sem
->wait_list
))
259 sem
= __rwsem_wake_one_writer(sem
);
261 raw_spin_unlock_irqrestore(&sem
->wait_lock
, flags
);
265 * release a write lock on the semaphore
267 void __up_write(struct rw_semaphore
*sem
)
271 raw_spin_lock_irqsave(&sem
->wait_lock
, flags
);
274 if (!list_empty(&sem
->wait_list
))
275 sem
= __rwsem_do_wake(sem
, 1);
277 raw_spin_unlock_irqrestore(&sem
->wait_lock
, flags
);
281 * downgrade a write lock into a read lock
282 * - just wake up any readers at the front of the queue
284 void __downgrade_write(struct rw_semaphore
*sem
)
288 raw_spin_lock_irqsave(&sem
->wait_lock
, flags
);
291 if (!list_empty(&sem
->wait_list
))
292 sem
= __rwsem_do_wake(sem
, 0);
294 raw_spin_unlock_irqrestore(&sem
->wait_lock
, flags
);