1 /* SPDX-License-Identifier: GPL-2.0 */
2 /* rwsem.h: R/W semaphores, public interface
5 * Derived from asm-i386/semaphore.h
11 #include <linux/linkage.h>
13 #include <linux/types.h>
14 #include <linux/kernel.h>
15 #include <linux/list.h>
16 #include <linux/spinlock.h>
17 #include <linux/atomic.h>
18 #include <linux/err.h>
19 #ifdef CONFIG_RWSEM_SPIN_ON_OWNER
20 #include <linux/osq_lock.h>
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.
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.
37 #ifdef CONFIG_RWSEM_SPIN_ON_OWNER
39 * Write owner. Used as a speculative check to see
40 * if the owner is running on the cpu.
42 struct task_struct *owner;
43 struct optimistic_spin_queue osq; /* spinner MCS lock */
45 raw_spinlock_t wait_lock;
46 struct list_head wait_list;
47 #ifdef CONFIG_DEBUG_LOCK_ALLOC
48 struct lockdep_map dep_map;
53 * Setting bit 1 of the owner field but not bit 0 will indicate
54 * that the rwsem is writer-owned with an unknown owner.
56 #define RWSEM_OWNER_UNKNOWN ((struct task_struct *)-2L)
58 /* In all implementations count != 0 means locked */
59 static inline int rwsem_is_locked(struct rw_semaphore *sem)
61 return atomic_long_read(&sem->count) != 0;
64 #define RWSEM_UNLOCKED_VALUE 0L
65 #define __RWSEM_INIT_COUNT(name) .count = ATOMIC_LONG_INIT(RWSEM_UNLOCKED_VALUE)
67 /* Common initializer macros and functions */
69 #ifdef CONFIG_DEBUG_LOCK_ALLOC
70 # define __RWSEM_DEP_MAP_INIT(lockname) , .dep_map = { .name = #lockname }
72 # define __RWSEM_DEP_MAP_INIT(lockname)
75 #ifdef CONFIG_RWSEM_SPIN_ON_OWNER
76 #define __RWSEM_OPT_INIT(lockname) , .osq = OSQ_LOCK_UNLOCKED, .owner = NULL
78 #define __RWSEM_OPT_INIT(lockname)
81 #define __RWSEM_INITIALIZER(name) \
82 { __RWSEM_INIT_COUNT(name), \
83 .wait_list = LIST_HEAD_INIT((name).wait_list), \
84 .wait_lock = __RAW_SPIN_LOCK_UNLOCKED(name.wait_lock) \
85 __RWSEM_OPT_INIT(name) \
86 __RWSEM_DEP_MAP_INIT(name) }
88 #define DECLARE_RWSEM(name) \
89 struct rw_semaphore name = __RWSEM_INITIALIZER(name)
91 extern void __init_rwsem(struct rw_semaphore *sem, const char *name,
92 struct lock_class_key *key);
94 #define init_rwsem(sem) \
96 static struct lock_class_key __key; \
98 __init_rwsem((sem), #sem, &__key); \
102 * This is the same regardless of which rwsem implementation that is being used.
103 * It is just a heuristic meant to be called by somebody alreadying holding the
104 * rwsem to see if somebody from an incompatible type is wanting access to the
107 static inline int rwsem_is_contended(struct rw_semaphore *sem)
109 return !list_empty(&sem->wait_list);
115 extern void down_read(struct rw_semaphore *sem);
116 extern int __must_check down_read_killable(struct rw_semaphore *sem);
119 * trylock for reading -- returns 1 if successful, 0 if contention
121 extern int down_read_trylock(struct rw_semaphore *sem);
126 extern void down_write(struct rw_semaphore *sem);
127 extern int __must_check down_write_killable(struct rw_semaphore *sem);
130 * trylock for writing -- returns 1 if successful, 0 if contention
132 extern int down_write_trylock(struct rw_semaphore *sem);
135 * release a read lock
137 extern void up_read(struct rw_semaphore *sem);
140 * release a write lock
142 extern void up_write(struct rw_semaphore *sem);
145 * downgrade write lock to read lock
147 extern void downgrade_write(struct rw_semaphore *sem);
149 #ifdef CONFIG_DEBUG_LOCK_ALLOC
151 * nested locking. NOTE: rwsems are not allowed to recurse
152 * (which occurs if the same task tries to acquire the same
153 * lock instance multiple times), but multiple locks of the
154 * same lock class might be taken, if the order of the locks
155 * is always the same. This ordering rule can be expressed
156 * to lockdep via the _nested() APIs, but enumerating the
157 * subclasses that are used. (If the nesting relationship is
158 * static then another method for expressing nested locking is
159 * the explicit definition of lock class keys and the use of
160 * lockdep_set_class() at lock initialization time.
161 * See Documentation/locking/lockdep-design.txt for more details.)
163 extern void down_read_nested(struct rw_semaphore *sem, int subclass);
164 extern void down_write_nested(struct rw_semaphore *sem, int subclass);
165 extern int down_write_killable_nested(struct rw_semaphore *sem, int subclass);
166 extern void _down_write_nest_lock(struct rw_semaphore *sem, struct lockdep_map *nest_lock);
168 # define down_write_nest_lock(sem, nest_lock) \
170 typecheck(struct lockdep_map *, &(nest_lock)->dep_map); \
171 _down_write_nest_lock(sem, &(nest_lock)->dep_map); \
175 * Take/release a lock when not the owner will release it.
177 * [ This API should be avoided as much as possible - the
178 * proper abstraction for this case is completions. ]
180 extern void down_read_non_owner(struct rw_semaphore *sem);
181 extern void up_read_non_owner(struct rw_semaphore *sem);
183 # define down_read_nested(sem, subclass) down_read(sem)
184 # define down_write_nest_lock(sem, nest_lock) down_write(sem)
185 # define down_write_nested(sem, subclass) down_write(sem)
186 # define down_write_killable_nested(sem, subclass) down_write_killable(sem)
187 # define down_read_non_owner(sem) down_read(sem)
188 # define up_read_non_owner(sem) up_read(sem)
191 #endif /* _LINUX_RWSEM_H */