linprocfs - Introduce /proc/mounts
[dragonfly.git] / sys / sys / mutex2.h
blobae0d4782ac622ee094fc0a752c16b4746337a409
1 /*
2 * Copyright (c) 2009 The DragonFly Project. All rights reserved.
4 * This code is derived from software contributed to The DragonFly Project
5 * by Matthew Dillon <dillon@backplane.com>
7 * Redistribution and use in source and binary forms, with or without
8 * modification, are permitted provided that the following conditions
9 * are met:
11 * 1. Redistributions of source code must retain the above copyright
12 * notice, this list of conditions and the following disclaimer.
13 * 2. Redistributions in binary form must reproduce the above copyright
14 * notice, this list of conditions and the following disclaimer in
15 * the documentation and/or other materials provided with the
16 * distribution.
17 * 3. Neither the name of The DragonFly Project nor the names of its
18 * contributors may be used to endorse or promote products derived
19 * from this software without specific, prior written permission.
21 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
22 * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
23 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
24 * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
25 * COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
26 * INCIDENTAL, SPECIAL, EXEMPLARY OR CONSEQUENTIAL DAMAGES (INCLUDING,
27 * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
28 * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
29 * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
30 * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
31 * OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
32 * SUCH DAMAGE.
35 #ifndef _SYS_MUTEX2_H_
36 #define _SYS_MUTEX2_H_
38 #ifndef _SYS_MUTEX_H_
39 #include <sys/mutex.h>
40 #endif
41 #ifndef _MACHINE_ATOMIC_H_
42 #include <machine/atomic.h>
43 #endif
46 * Initialize a new mutex, placing it in an unlocked state with no refs.
48 static __inline void
49 mtx_init(mtx_t mtx)
51 mtx->mtx_lock = 0;
52 mtx->mtx_refs = 0;
53 mtx->mtx_owner = NULL;
54 mtx->mtx_link = NULL;
57 static __inline void
58 mtx_link_init(mtx_link_t link)
60 link->state = MTX_LINK_IDLE;
64 * Deinitialize a mutex
66 static __inline void
67 mtx_uninit(mtx_t mtx)
69 /* empty */
73 * Exclusive-lock a mutex, block until acquired or aborted. Recursion
74 * is allowed.
76 * This version of the function allows the mtx_link to be passed in, thus
77 * giving the caller visibility for the link structure which is required
78 * when calling mtx_abort_ex_link().
80 * The mutex may be aborted at any time while the passed link structure
81 * is valid.
83 static __inline int
84 mtx_lock_ex_link(mtx_t mtx, struct mtx_link *link,
85 const char *ident, int flags, int to)
87 if (atomic_cmpset_int(&mtx->mtx_lock, 0, MTX_EXCLUSIVE | 1) == 0)
88 return(_mtx_lock_ex_link(mtx, link, ident, flags, to));
89 mtx->mtx_owner = curthread;
90 return(0);
94 * Exclusive-lock a mutex, block until acquired. Recursion is allowed.
96 * Returns 0 on success, or the tsleep() return code on failure.
97 * An error can only be returned if PCATCH is specified in the flags.
99 static __inline int
100 mtx_lock_ex(mtx_t mtx, const char *ident, int flags, int to)
102 if (atomic_cmpset_int(&mtx->mtx_lock, 0, MTX_EXCLUSIVE | 1) == 0)
103 return(_mtx_lock_ex(mtx, ident, flags, to));
104 mtx->mtx_owner = curthread;
105 return(0);
108 static __inline int
109 mtx_lock_ex_quick(mtx_t mtx, const char *ident)
111 if (atomic_cmpset_int(&mtx->mtx_lock, 0, MTX_EXCLUSIVE | 1) == 0)
112 return(_mtx_lock_ex_quick(mtx, ident));
113 mtx->mtx_owner = curthread;
114 return(0);
118 * Share-lock a mutex, block until acquired. Recursion is allowed.
120 * Returns 0 on success, or the tsleep() return code on failure.
121 * An error can only be returned if PCATCH is specified in the flags.
123 static __inline int
124 mtx_lock_sh(mtx_t mtx, const char *ident, int flags, int to)
126 if (atomic_cmpset_int(&mtx->mtx_lock, 0, 1) == 0)
127 return(_mtx_lock_sh(mtx, ident, flags, to));
128 return(0);
131 static __inline int
132 mtx_lock_sh_quick(mtx_t mtx, const char *ident)
134 if (atomic_cmpset_int(&mtx->mtx_lock, 0, 1) == 0)
135 return(_mtx_lock_sh_quick(mtx, ident));
136 return(0);
140 * Exclusive-lock a mutex, spin until acquired. Recursion is allowed.
142 static __inline void
143 mtx_spinlock_ex(mtx_t mtx)
145 if (atomic_cmpset_int(&mtx->mtx_lock, 0, MTX_EXCLUSIVE | 1) == 0)
146 _mtx_spinlock_ex(mtx);
150 * Share-lock a mutex, spin until acquired. Recursion is allowed.
152 static __inline void
153 mtx_spinlock_sh(mtx_t mtx)
155 if (atomic_cmpset_int(&mtx->mtx_lock, 0, 1) == 0)
156 _mtx_spinlock_sh(mtx);
160 * Attempt to exclusive-lock a mutex, return 0 on success and
161 * EAGAIN on failure.
163 static __inline int
164 mtx_lock_ex_try(mtx_t mtx)
166 if (atomic_cmpset_int(&mtx->mtx_lock, 0, MTX_EXCLUSIVE | 1) == 0)
167 return (_mtx_lock_ex_try(mtx));
168 mtx->mtx_owner = curthread;
169 return (0);
173 * Attempt to share-lock a mutex, return 0 on success and
174 * EAGAIN on failure.
176 static __inline int
177 mtx_lock_sh_try(mtx_t mtx)
179 if (atomic_cmpset_int(&mtx->mtx_lock, 0, 1) == 0)
180 return (_mtx_lock_sh_try(mtx));
181 return (0);
185 * If the lock is held exclusively it must be owned by the caller. If the
186 * lock is already a shared lock this operation is a NOP. A panic will
187 * occur if the lock is not held either shared or exclusive.
189 * The exclusive count is converted to a shared count.
191 static __inline void
192 mtx_downgrade(mtx_t mtx)
194 mtx->mtx_owner = NULL;
195 if (atomic_cmpset_int(&mtx->mtx_lock, MTX_EXCLUSIVE | 1, 0) == 0)
196 _mtx_downgrade(mtx);
200 * Upgrade a shared lock to an exclusive lock. The upgrade will fail if
201 * the shared lock has a count other then 1. Optimize the most likely case
202 * but note that a single cmpset can fail due to WANTED races.
204 * If the lock is held exclusively it must be owned by the caller and
205 * this function will simply return without doing anything. A panic will
206 * occur if the lock is held exclusively by someone other then the caller.
208 * Returns 0 on success, EDEADLK on failure.
210 static __inline int
211 mtx_upgrade_try(mtx_t mtx)
213 if (atomic_cmpset_int(&mtx->mtx_lock, 1, MTX_EXCLUSIVE | 1))
214 return(0);
215 return (_mtx_upgrade_try(mtx));
219 * Optimized unlock cases.
221 static __inline void
222 mtx_unlock(mtx_t mtx)
224 u_int lock = mtx->mtx_lock;
226 if (lock == (MTX_EXCLUSIVE | 1)) {
227 mtx->mtx_owner = NULL;
228 if (atomic_cmpset_int(&mtx->mtx_lock, lock, 0) == 0)
229 _mtx_unlock(mtx);
230 } else if (lock == 1) {
231 if (atomic_cmpset_int(&mtx->mtx_lock, lock, 0) == 0)
232 _mtx_unlock(mtx);
233 } else {
234 _mtx_unlock(mtx);
238 static __inline void
239 mtx_unlock_ex(mtx_t mtx)
241 u_int lock = mtx->mtx_lock;
243 if (lock == (MTX_EXCLUSIVE | 1)) {
244 mtx->mtx_owner = NULL;
245 if (atomic_cmpset_int(&mtx->mtx_lock, lock, 0) == 0)
246 _mtx_unlock(mtx);
247 } else {
248 _mtx_unlock(mtx);
252 static __inline void
253 mtx_unlock_sh(mtx_t mtx)
255 if (atomic_cmpset_int(&mtx->mtx_lock, 1, 0) == 0)
256 _mtx_unlock(mtx);
260 * Return TRUE (non-zero) if the mutex is locked shared or exclusive by
261 * anyone, including the owner.
263 static __inline int
264 mtx_islocked(mtx_t mtx)
266 return(mtx->mtx_lock != 0);
270 * Return TRUE (non-zero) if the mutex is locked exclusively by anyone,
271 * including the owner.
273 * The mutex may in an unlocked or shared lock state.
275 static __inline int
276 mtx_islocked_ex(mtx_t mtx)
278 return((mtx->mtx_lock & MTX_EXCLUSIVE) != 0);
282 * Return TRUE (non-zero) if the mutex is not locked.
284 static __inline int
285 mtx_notlocked(mtx_t mtx)
287 return(mtx->mtx_lock == 0);
291 * Return TRUE (non-zero) if the mutex is not locked exclusively.
292 * The mutex may in an unlocked or shared lock state.
294 static __inline int
295 mtx_notlocked_ex(mtx_t mtx)
297 return((mtx->mtx_lock & MTX_EXCLUSIVE) != 0);
301 * Return TRUE (non-zero) if the mutex is exclusively locked by
302 * the caller.
304 static __inline int
305 mtx_owned(mtx_t mtx)
307 return((mtx->mtx_lock & MTX_EXCLUSIVE) && mtx->mtx_owner == curthread);
311 * Return TRUE (non-zero) if the mutex is not exclusively locked by
312 * the caller.
314 static __inline int
315 mtx_notowned(mtx_t mtx)
317 return((mtx->mtx_lock & MTX_EXCLUSIVE) == 0 ||
318 mtx->mtx_owner != curthread);
322 * Return the shared or exclusive lock count. A return value of 0
323 * indicate that the mutex is not locked.
325 * NOTE: If the mutex is held exclusively by someone other then the
326 * caller the lock count for the other owner is still returned.
328 static __inline int
329 mtx_lockrefs(mtx_t mtx)
331 return(mtx->mtx_lock & MTX_MASK);
335 * Bump the lock's ref count. This field is independent of the lock.
337 static __inline void
338 mtx_hold(mtx_t mtx)
340 atomic_add_acq_int(&mtx->mtx_refs, 1);
344 * Drop the lock's ref count. This field is independent of the lock.
346 * Returns the previous ref count, interlocked so testing against
347 * 1 means you won the 1->0 transition
349 static __inline int
350 mtx_drop(mtx_t mtx)
352 return (atomic_fetchadd_int(&mtx->mtx_refs, -1));
355 #endif