locking/rwsem: Enable readers spinning on writer
[linux-2.6-block.git] / include / linux / rwsem.h
CommitLineData
b2441318 1/* SPDX-License-Identifier: GPL-2.0 */
1da177e4
LT
2/* rwsem.h: R/W semaphores, public interface
3 *
4 * Written by David Howells (dhowells@redhat.com).
5 * Derived from asm-i386/semaphore.h
6 */
7
8#ifndef _LINUX_RWSEM_H
9#define _LINUX_RWSEM_H
10
11#include <linux/linkage.h>
12
1da177e4
LT
13#include <linux/types.h>
14#include <linux/kernel.h>
c16a87ce
TG
15#include <linux/list.h>
16#include <linux/spinlock.h>
60063497 17#include <linux/atomic.h>
d4799608 18#include <linux/err.h>
5db6c6fe 19#ifdef CONFIG_RWSEM_SPIN_ON_OWNER
90631822 20#include <linux/osq_lock.h>
5db6c6fe 21#endif
1da177e4 22
364f784f
WL
23/*
24 * For an uncontended rwsem, count and owner are the only fields a task
25 * needs to touch when acquiring the rwsem. So they are put next to each
26 * other to increase the chance that they will share the same cacheline.
27 *
28 * In a contended rwsem, the owner is likely the most frequently accessed
29 * field in the structure as the optimistic waiter that holds the osq lock
30 * will spin on owner. For an embedded rwsem, other hot fields in the
31 * containing structure should be moved further away from the rwsem to
32 * reduce the chance that they will share the same cacheline causing
33 * cacheline bouncing problem.
34 */
1c8ed640 35struct rw_semaphore {
8ee62b18 36 atomic_long_t count;
4fc828e2 37 /*
c71fd893
WL
38 * Write owner or one of the read owners. Can be used as a
39 * speculative check to see if the owner is running on the cpu.
4fc828e2
DB
40 */
41 struct task_struct *owner;
c71fd893 42#ifdef CONFIG_RWSEM_SPIN_ON_OWNER
364f784f 43 struct optimistic_spin_queue osq; /* spinner MCS lock */
4fc828e2 44#endif
364f784f
WL
45 raw_spinlock_t wait_lock;
46 struct list_head wait_list;
1c8ed640
TG
47#ifdef CONFIG_DEBUG_LOCK_ALLOC
48 struct lockdep_map dep_map;
49#endif
50};
51
5a817641 52/*
02f1082b 53 * Setting all bits of the owner field except bit 0 will indicate
5a817641
WL
54 * that the rwsem is writer-owned with an unknown owner.
55 */
925b9cd1 56#define RWSEM_OWNER_UNKNOWN ((struct task_struct *)-2L)
5a817641 57
41e5887f
TG
58/* In all implementations count != 0 means locked */
59static inline int rwsem_is_locked(struct rw_semaphore *sem)
60{
8ee62b18 61 return atomic_long_read(&sem->count) != 0;
41e5887f
TG
62}
63
46ad0840 64#define RWSEM_UNLOCKED_VALUE 0L
8ee62b18 65#define __RWSEM_INIT_COUNT(name) .count = ATOMIC_LONG_INIT(RWSEM_UNLOCKED_VALUE)
1da177e4 66
12249b34
TG
67/* Common initializer macros and functions */
68
69#ifdef CONFIG_DEBUG_LOCK_ALLOC
70# define __RWSEM_DEP_MAP_INIT(lockname) , .dep_map = { .name = #lockname }
71#else
72# define __RWSEM_DEP_MAP_INIT(lockname)
73#endif
74
5db6c6fe 75#ifdef CONFIG_RWSEM_SPIN_ON_OWNER
c71fd893 76#define __RWSEM_OPT_INIT(lockname) , .osq = OSQ_LOCK_UNLOCKED
4fc828e2 77#else
ce069fc9 78#define __RWSEM_OPT_INIT(lockname)
4fc828e2 79#endif
12249b34 80
ce069fc9 81#define __RWSEM_INITIALIZER(name) \
8ee62b18 82 { __RWSEM_INIT_COUNT(name), \
c71fd893 83 .owner = NULL, \
ce069fc9
JL
84 .wait_list = LIST_HEAD_INIT((name).wait_list), \
85 .wait_lock = __RAW_SPIN_LOCK_UNLOCKED(name.wait_lock) \
86 __RWSEM_OPT_INIT(name) \
87 __RWSEM_DEP_MAP_INIT(name) }
88
12249b34
TG
89#define DECLARE_RWSEM(name) \
90 struct rw_semaphore name = __RWSEM_INITIALIZER(name)
91
92extern void __init_rwsem(struct rw_semaphore *sem, const char *name,
93 struct lock_class_key *key);
94
95#define init_rwsem(sem) \
96do { \
97 static struct lock_class_key __key; \
98 \
99 __init_rwsem((sem), #sem, &__key); \
100} while (0)
101
4a444b1f
JB
102/*
103 * This is the same regardless of which rwsem implementation that is being used.
104 * It is just a heuristic meant to be called by somebody alreadying holding the
105 * rwsem to see if somebody from an incompatible type is wanting access to the
106 * lock.
107 */
108static inline int rwsem_is_contended(struct rw_semaphore *sem)
109{
110 return !list_empty(&sem->wait_list);
111}
112
1da177e4
LT
113/*
114 * lock for reading
115 */
4ea2176d 116extern void down_read(struct rw_semaphore *sem);
76f8507f 117extern int __must_check down_read_killable(struct rw_semaphore *sem);
1da177e4
LT
118
119/*
120 * trylock for reading -- returns 1 if successful, 0 if contention
121 */
4ea2176d 122extern int down_read_trylock(struct rw_semaphore *sem);
1da177e4
LT
123
124/*
125 * lock for writing
126 */
4ea2176d 127extern void down_write(struct rw_semaphore *sem);
916633a4 128extern int __must_check down_write_killable(struct rw_semaphore *sem);
1da177e4
LT
129
130/*
131 * trylock for writing -- returns 1 if successful, 0 if contention
132 */
4ea2176d 133extern int down_write_trylock(struct rw_semaphore *sem);
1da177e4
LT
134
135/*
136 * release a read lock
137 */
4ea2176d 138extern void up_read(struct rw_semaphore *sem);
1da177e4
LT
139
140/*
141 * release a write lock
142 */
4ea2176d 143extern void up_write(struct rw_semaphore *sem);
1da177e4
LT
144
145/*
146 * downgrade write lock to read lock
147 */
4ea2176d
IM
148extern void downgrade_write(struct rw_semaphore *sem);
149
150#ifdef CONFIG_DEBUG_LOCK_ALLOC
151/*
5fca80e8
IM
152 * nested locking. NOTE: rwsems are not allowed to recurse
153 * (which occurs if the same task tries to acquire the same
154 * lock instance multiple times), but multiple locks of the
155 * same lock class might be taken, if the order of the locks
156 * is always the same. This ordering rule can be expressed
157 * to lockdep via the _nested() APIs, but enumerating the
158 * subclasses that are used. (If the nesting relationship is
159 * static then another method for expressing nested locking is
160 * the explicit definition of lock class keys and the use of
161 * lockdep_set_class() at lock initialization time.
214e0aed 162 * See Documentation/locking/lockdep-design.txt for more details.)
4ea2176d
IM
163 */
164extern void down_read_nested(struct rw_semaphore *sem, int subclass);
165extern void down_write_nested(struct rw_semaphore *sem, int subclass);
887bddfa 166extern int down_write_killable_nested(struct rw_semaphore *sem, int subclass);
1b963c81
JK
167extern void _down_write_nest_lock(struct rw_semaphore *sem, struct lockdep_map *nest_lock);
168
169# define down_write_nest_lock(sem, nest_lock) \
170do { \
171 typecheck(struct lockdep_map *, &(nest_lock)->dep_map); \
172 _down_write_nest_lock(sem, &(nest_lock)->dep_map); \
173} while (0);
174
84759c6d
KO
175/*
176 * Take/release a lock when not the owner will release it.
177 *
178 * [ This API should be avoided as much as possible - the
179 * proper abstraction for this case is completions. ]
180 */
181extern void down_read_non_owner(struct rw_semaphore *sem);
182extern void up_read_non_owner(struct rw_semaphore *sem);
4ea2176d
IM
183#else
184# define down_read_nested(sem, subclass) down_read(sem)
e65b9ad2 185# define down_write_nest_lock(sem, nest_lock) down_write(sem)
4ea2176d 186# define down_write_nested(sem, subclass) down_write(sem)
887bddfa 187# define down_write_killable_nested(sem, subclass) down_write_killable(sem)
84759c6d
KO
188# define down_read_non_owner(sem) down_read(sem)
189# define up_read_non_owner(sem) up_read(sem)
4ea2176d 190#endif
1da177e4 191
1da177e4 192#endif /* _LINUX_RWSEM_H */