]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - sys/sys/mutex.h
mtx: clean up locking spin mutexes
[FreeBSD/FreeBSD.git] / sys / sys / mutex.h
1 /*-
2  * Copyright (c) 1997 Berkeley Software Design, Inc. All rights reserved.
3  *
4  * Redistribution and use in source and binary forms, with or without
5  * modification, are permitted provided that the following conditions
6  * are met:
7  * 1. Redistributions of source code must retain the above copyright
8  *    notice, this list of conditions and the following disclaimer.
9  * 2. Redistributions in binary form must reproduce the above copyright
10  *    notice, this list of conditions and the following disclaimer in the
11  *    documentation and/or other materials provided with the distribution.
12  * 3. Berkeley Software Design Inc's name may not be used to endorse or
13  *    promote products derived from this software without specific prior
14  *    written permission.
15  *
16  * THIS SOFTWARE IS PROVIDED BY BERKELEY SOFTWARE DESIGN INC ``AS IS'' AND
17  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
18  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
19  * ARE DISCLAIMED.  IN NO EVENT SHALL BERKELEY SOFTWARE DESIGN INC BE LIABLE
20  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
21  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
22  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
23  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
24  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
25  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
26  * SUCH DAMAGE.
27  *
28  *      from BSDI $Id: mutex.h,v 2.7.2.35 2000/04/27 03:10:26 cp Exp $
29  * $FreeBSD$
30  */
31
32 #ifndef _SYS_MUTEX_H_
33 #define _SYS_MUTEX_H_
34
35 #include <sys/queue.h>
36 #include <sys/_lock.h>
37 #include <sys/_mutex.h>
38
39 #ifdef _KERNEL
40 #include <sys/pcpu.h>
41 #include <sys/lock_profile.h>
42 #include <sys/lockstat.h>
43 #include <machine/atomic.h>
44 #include <machine/cpufunc.h>
45
46 /*
47  * Mutex types and options passed to mtx_init().  MTX_QUIET and MTX_DUPOK
48  * can also be passed in.
49  */
50 #define MTX_DEF         0x00000000      /* DEFAULT (sleep) lock */ 
51 #define MTX_SPIN        0x00000001      /* Spin lock (disables interrupts) */
52 #define MTX_RECURSE     0x00000004      /* Option: lock allowed to recurse */
53 #define MTX_NOWITNESS   0x00000008      /* Don't do any witness checking. */
54 #define MTX_NOPROFILE   0x00000020      /* Don't profile this lock */
55 #define MTX_NEW         0x00000040      /* Don't check for double-init */
56
57 /*
58  * Option flags passed to certain lock/unlock routines, through the use
59  * of corresponding mtx_{lock,unlock}_flags() interface macros.
60  */
61 #define MTX_QUIET       LOP_QUIET       /* Don't log a mutex event */
62 #define MTX_DUPOK       LOP_DUPOK       /* Don't log a duplicate acquire */
63
64 /*
65  * State bits kept in mutex->mtx_lock, for the DEFAULT lock type. None of this,
66  * with the exception of MTX_UNOWNED, applies to spin locks.
67  */
68 #define MTX_UNOWNED     0x00000000      /* Cookie for free mutex */
69 #define MTX_RECURSED    0x00000001      /* lock recursed (for MTX_DEF only) */
70 #define MTX_CONTESTED   0x00000002      /* lock contested (for MTX_DEF only) */
71 #define MTX_DESTROYED   0x00000004      /* lock destroyed */
72 #define MTX_FLAGMASK    (MTX_RECURSED | MTX_CONTESTED | MTX_DESTROYED)
73
74 /*
75  * Prototypes
76  *
77  * NOTE: Functions prepended with `_' (underscore) are exported to other parts
78  *       of the kernel via macros, thus allowing us to use the cpp LOCK_FILE
79  *       and LOCK_LINE or for hiding the lock cookie crunching to the
80  *       consumers. These functions should not be called directly by any
81  *       code using the API. Their macros cover their functionality.
82  *       Functions with a `_' suffix are the entrypoint for the common
83  *       KPI covering both compat shims and fast path case.  These can be
84  *       used by consumers willing to pass options, file and line
85  *       informations, in an option-independent way.
86  *
87  * [See below for descriptions]
88  *
89  */
90 void    _mtx_init(volatile uintptr_t *c, const char *name, const char *type,
91             int opts);
92 void    _mtx_destroy(volatile uintptr_t *c);
93 void    mtx_sysinit(void *arg);
94 int     _mtx_trylock_flags_(volatile uintptr_t *c, int opts, const char *file,
95             int line);
96 void    mutex_init(void);
97 #if LOCK_DEBUG > 0
98 void    __mtx_lock_sleep(volatile uintptr_t *c, uintptr_t v, int opts,
99             const char *file, int line);
100 void    __mtx_unlock_sleep(volatile uintptr_t *c, int opts, const char *file,
101             int line);
102 #else
103 void    __mtx_lock_sleep(volatile uintptr_t *c, uintptr_t v);
104 void    __mtx_unlock_sleep(volatile uintptr_t *c);
105 #endif
106
107 #ifdef SMP
108 #if LOCK_DEBUG > 0
109 void    _mtx_lock_spin_cookie(volatile uintptr_t *c, uintptr_t v, int opts,
110             const char *file, int line);
111 #else
112 void    _mtx_lock_spin_cookie(volatile uintptr_t *c, uintptr_t v);
113 #endif
114 #endif
115 void    __mtx_lock_flags(volatile uintptr_t *c, int opts, const char *file,
116             int line);
117 void    __mtx_unlock_flags(volatile uintptr_t *c, int opts, const char *file,
118             int line);
119 void    __mtx_lock_spin_flags(volatile uintptr_t *c, int opts, const char *file,
120              int line);
121 int     __mtx_trylock_spin_flags(volatile uintptr_t *c, int opts,
122              const char *file, int line);
123 void    __mtx_unlock_spin_flags(volatile uintptr_t *c, int opts,
124             const char *file, int line);
125 #if defined(INVARIANTS) || defined(INVARIANT_SUPPORT)
126 void    __mtx_assert(const volatile uintptr_t *c, int what, const char *file,
127             int line);
128 #endif
129 void    thread_lock_flags_(struct thread *, int, const char *, int);
130
131 #define thread_lock(tdp)                                                \
132         thread_lock_flags_((tdp), 0, __FILE__, __LINE__)
133 #define thread_lock_flags(tdp, opt)                                     \
134         thread_lock_flags_((tdp), (opt), __FILE__, __LINE__)
135 #define thread_unlock(tdp)                                              \
136        mtx_unlock_spin((tdp)->td_lock)
137
138 /*
139  * Top-level macros to provide lock cookie once the actual mtx is passed.
140  * They will also prevent passing a malformed object to the mtx KPI by
141  * failing compilation as the mtx_lock reserved member will not be found.
142  */
143 #define mtx_init(m, n, t, o)                                            \
144         _mtx_init(&(m)->mtx_lock, n, t, o)
145 #define mtx_destroy(m)                                                  \
146         _mtx_destroy(&(m)->mtx_lock)
147 #define mtx_trylock_flags_(m, o, f, l)                                  \
148         _mtx_trylock_flags_(&(m)->mtx_lock, o, f, l)
149 #if LOCK_DEBUG > 0
150 #define _mtx_lock_sleep(m, v, o, f, l)                                  \
151         __mtx_lock_sleep(&(m)->mtx_lock, v, o, f, l)
152 #define _mtx_unlock_sleep(m, o, f, l)                                   \
153         __mtx_unlock_sleep(&(m)->mtx_lock, o, f, l)
154 #else
155 #define _mtx_lock_sleep(m, v, o, f, l)                                  \
156         __mtx_lock_sleep(&(m)->mtx_lock, v)
157 #define _mtx_unlock_sleep(m, o, f, l)                                   \
158         __mtx_unlock_sleep(&(m)->mtx_lock)
159 #endif
160 #ifdef SMP
161 #if LOCK_DEBUG > 0
162 #define _mtx_lock_spin(m, v, o, f, l)                                   \
163         _mtx_lock_spin_cookie(&(m)->mtx_lock, v, o, f, l)
164 #else
165 #define _mtx_lock_spin(m, v, o, f, l)                                   \
166         _mtx_lock_spin_cookie(&(m)->mtx_lock, v)
167 #endif
168 #endif
169 #define _mtx_lock_flags(m, o, f, l)                                     \
170         __mtx_lock_flags(&(m)->mtx_lock, o, f, l)
171 #define _mtx_unlock_flags(m, o, f, l)                                   \
172         __mtx_unlock_flags(&(m)->mtx_lock, o, f, l)
173 #define _mtx_lock_spin_flags(m, o, f, l)                                \
174         __mtx_lock_spin_flags(&(m)->mtx_lock, o, f, l)
175 #define _mtx_trylock_spin_flags(m, o, f, l)                             \
176         __mtx_trylock_spin_flags(&(m)->mtx_lock, o, f, l)
177 #define _mtx_unlock_spin_flags(m, o, f, l)                              \
178         __mtx_unlock_spin_flags(&(m)->mtx_lock, o, f, l)
179 #if defined(INVARIANTS) || defined(INVARIANT_SUPPORT)
180 #define _mtx_assert(m, w, f, l)                                         \
181         __mtx_assert(&(m)->mtx_lock, w, f, l)
182 #endif
183
184 #define mtx_recurse     lock_object.lo_data
185
186 /* Very simple operations on mtx_lock. */
187
188 /* Try to obtain mtx_lock once. */
189 #define _mtx_obtain_lock(mp, tid)                                       \
190         atomic_cmpset_acq_ptr(&(mp)->mtx_lock, MTX_UNOWNED, (tid))
191
192 #define _mtx_obtain_lock_fetch(mp, vp, tid)                             \
193         atomic_fcmpset_acq_ptr(&(mp)->mtx_lock, vp, (tid))
194
195 /* Try to release mtx_lock if it is unrecursed and uncontested. */
196 #define _mtx_release_lock(mp, tid)                                      \
197         atomic_cmpset_rel_ptr(&(mp)->mtx_lock, (tid), MTX_UNOWNED)
198
199 /* Release mtx_lock quickly, assuming we own it. */
200 #define _mtx_release_lock_quick(mp)                                     \
201         atomic_store_rel_ptr(&(mp)->mtx_lock, MTX_UNOWNED)
202
203 /*
204  * Full lock operations that are suitable to be inlined in non-debug
205  * kernels.  If the lock cannot be acquired or released trivially then
206  * the work is deferred to another function.
207  */
208
209 /* Lock a normal mutex. */
210 #define __mtx_lock(mp, tid, opts, file, line) do {                      \
211         uintptr_t _tid = (uintptr_t)(tid);                              \
212         uintptr_t _v = MTX_UNOWNED;                                     \
213                                                                         \
214         if (__predict_false(LOCKSTAT_PROFILE_ENABLED(adaptive__acquire) ||\
215             !_mtx_obtain_lock_fetch((mp), &_v, _tid)))                  \
216                 _mtx_lock_sleep((mp), _v, (opts), (file), (line));      \
217 } while (0)
218
219 /*
220  * Lock a spin mutex.  For spinlocks, we handle recursion inline (it
221  * turns out that function calls can be significantly expensive on
222  * some architectures).  Since spin locks are not _too_ common,
223  * inlining this code is not too big a deal.
224  */
225 #ifdef SMP
226 #define __mtx_lock_spin(mp, tid, opts, file, line) do {                 \
227         uintptr_t _tid = (uintptr_t)(tid);                              \
228         uintptr_t _v = MTX_UNOWNED;                                     \
229                                                                         \
230         spinlock_enter();                                               \
231         if (__predict_false(LOCKSTAT_PROFILE_ENABLED(spin__acquire) ||  \
232             !_mtx_obtain_lock_fetch((mp), &_v, _tid)))                  \
233                 _mtx_lock_spin((mp), _v, (opts), (file), (line));       \
234 } while (0)
235 #define __mtx_trylock_spin(mp, tid, opts, file, line) __extension__  ({ \
236         uintptr_t _tid = (uintptr_t)(tid);                              \
237         int _ret;                                                       \
238                                                                         \
239         spinlock_enter();                                               \
240         if (((mp)->mtx_lock != MTX_UNOWNED || !_mtx_obtain_lock((mp), _tid))) {\
241                 spinlock_exit();                                        \
242                 _ret = 0;                                               \
243         } else {                                                        \
244                 LOCKSTAT_PROFILE_OBTAIN_LOCK_SUCCESS(spin__acquire,     \
245                     mp, 0, 0, file, line);                              \
246                 _ret = 1;                                               \
247         }                                                               \
248         _ret;                                                           \
249 })
250 #else /* SMP */
251 #define __mtx_lock_spin(mp, tid, opts, file, line) do {                 \
252         uintptr_t _tid = (uintptr_t)(tid);                              \
253                                                                         \
254         spinlock_enter();                                               \
255         if ((mp)->mtx_lock == _tid)                                     \
256                 (mp)->mtx_recurse++;                                    \
257         else {                                                          \
258                 KASSERT((mp)->mtx_lock == MTX_UNOWNED, ("corrupt spinlock")); \
259                 (mp)->mtx_lock = _tid;                                  \
260         }                                                               \
261 } while (0)
262 #define __mtx_trylock_spin(mp, tid, opts, file, line) __extension__  ({ \
263         uintptr_t _tid = (uintptr_t)(tid);                              \
264         int _ret;                                                       \
265                                                                         \
266         spinlock_enter();                                               \
267         if ((mp)->mtx_lock != MTX_UNOWNED) {                            \
268                 spinlock_exit();                                        \
269                 _ret = 0;                                               \
270         } else {                                                        \
271                 (mp)->mtx_lock = _tid;                                  \
272                 _ret = 1;                                               \
273         }                                                               \
274         _ret;                                                           \
275 })
276 #endif /* SMP */
277
278 /* Unlock a normal mutex. */
279 #define __mtx_unlock(mp, tid, opts, file, line) do {                    \
280         uintptr_t _tid = (uintptr_t)(tid);                              \
281                                                                         \
282         if (__predict_false(LOCKSTAT_PROFILE_ENABLED(adaptive__release) ||\
283             !_mtx_release_lock((mp), _tid)))                            \
284                 _mtx_unlock_sleep((mp), (opts), (file), (line));        \
285 } while (0)
286
287 /*
288  * Unlock a spin mutex.  For spinlocks, we can handle everything
289  * inline, as it's pretty simple and a function call would be too
290  * expensive (at least on some architectures).  Since spin locks are
291  * not _too_ common, inlining this code is not too big a deal.
292  *
293  * Since we always perform a spinlock_enter() when attempting to acquire a
294  * spin lock, we need to always perform a matching spinlock_exit() when
295  * releasing a spin lock.  This includes the recursion cases.
296  */
297 #ifdef SMP
298 #define __mtx_unlock_spin(mp) do {                                      \
299         if (mtx_recursed((mp)))                                         \
300                 (mp)->mtx_recurse--;                                    \
301         else {                                                          \
302                 LOCKSTAT_PROFILE_RELEASE_LOCK(spin__release, mp);       \
303                 _mtx_release_lock_quick((mp));                          \
304         }                                                               \
305         spinlock_exit();                                                \
306 } while (0)
307 #else /* SMP */
308 #define __mtx_unlock_spin(mp) do {                                      \
309         if (mtx_recursed((mp)))                                         \
310                 (mp)->mtx_recurse--;                                    \
311         else {                                                          \
312                 LOCKSTAT_PROFILE_RELEASE_LOCK(spin__release, mp);       \
313                 (mp)->mtx_lock = MTX_UNOWNED;                           \
314         }                                                               \
315         spinlock_exit();                                                \
316 } while (0)
317 #endif /* SMP */
318
319 /*
320  * Exported lock manipulation interface.
321  *
322  * mtx_lock(m) locks MTX_DEF mutex `m'
323  *
324  * mtx_lock_spin(m) locks MTX_SPIN mutex `m'
325  *
326  * mtx_unlock(m) unlocks MTX_DEF mutex `m'
327  *
328  * mtx_unlock_spin(m) unlocks MTX_SPIN mutex `m'
329  *
330  * mtx_lock_spin_flags(m, opts) and mtx_lock_flags(m, opts) locks mutex `m'
331  *     and passes option flags `opts' to the "hard" function, if required.
332  *     With these routines, it is possible to pass flags such as MTX_QUIET
333  *     to the appropriate lock manipulation routines.
334  *
335  * mtx_trylock(m) attempts to acquire MTX_DEF mutex `m' but doesn't sleep if
336  *     it cannot. Rather, it returns 0 on failure and non-zero on success.
337  *     It does NOT handle recursion as we assume that if a caller is properly
338  *     using this part of the interface, he will know that the lock in question
339  *     is _not_ recursed.
340  *
341  * mtx_trylock_flags(m, opts) is used the same way as mtx_trylock() but accepts
342  *     relevant option flags `opts.'
343  *
344  * mtx_trylock_spin(m) attempts to acquire MTX_SPIN mutex `m' but doesn't
345  *     spin if it cannot.  Rather, it returns 0 on failure and non-zero on
346  *     success.  It always returns failure for recursed lock attempts.
347  *
348  * mtx_initialized(m) returns non-zero if the lock `m' has been initialized.
349  *
350  * mtx_owned(m) returns non-zero if the current thread owns the lock `m'
351  *
352  * mtx_recursed(m) returns non-zero if the lock `m' is presently recursed.
353  */ 
354 #define mtx_lock(m)             mtx_lock_flags((m), 0)
355 #define mtx_lock_spin(m)        mtx_lock_spin_flags((m), 0)
356 #define mtx_trylock(m)          mtx_trylock_flags((m), 0)
357 #define mtx_trylock_spin(m)     mtx_trylock_spin_flags((m), 0)
358 #define mtx_unlock(m)           mtx_unlock_flags((m), 0)
359 #define mtx_unlock_spin(m)      mtx_unlock_spin_flags((m), 0)
360
361 struct mtx_pool;
362
363 struct mtx_pool *mtx_pool_create(const char *mtx_name, int pool_size, int opts);
364 void mtx_pool_destroy(struct mtx_pool **poolp);
365 struct mtx *mtx_pool_find(struct mtx_pool *pool, void *ptr);
366 struct mtx *mtx_pool_alloc(struct mtx_pool *pool);
367 #define mtx_pool_lock(pool, ptr)                                        \
368         mtx_lock(mtx_pool_find((pool), (ptr)))
369 #define mtx_pool_lock_spin(pool, ptr)                                   \
370         mtx_lock_spin(mtx_pool_find((pool), (ptr)))
371 #define mtx_pool_unlock(pool, ptr)                                      \
372         mtx_unlock(mtx_pool_find((pool), (ptr)))
373 #define mtx_pool_unlock_spin(pool, ptr)                                 \
374         mtx_unlock_spin(mtx_pool_find((pool), (ptr)))
375
376 /*
377  * mtxpool_sleep is a general purpose pool of sleep mutexes.
378  */
379 extern struct mtx_pool *mtxpool_sleep;
380
381 #ifndef LOCK_DEBUG
382 #error LOCK_DEBUG not defined, include <sys/lock.h> before <sys/mutex.h>
383 #endif
384 #if LOCK_DEBUG > 0 || defined(MUTEX_NOINLINE)
385 #define mtx_lock_flags_(m, opts, file, line)                            \
386         _mtx_lock_flags((m), (opts), (file), (line))
387 #define mtx_unlock_flags_(m, opts, file, line)                          \
388         _mtx_unlock_flags((m), (opts), (file), (line))
389 #define mtx_lock_spin_flags_(m, opts, file, line)                       \
390         _mtx_lock_spin_flags((m), (opts), (file), (line))
391 #define mtx_trylock_spin_flags_(m, opts, file, line)                    \
392         _mtx_trylock_spin_flags((m), (opts), (file), (line))
393 #define mtx_unlock_spin_flags_(m, opts, file, line)                     \
394         _mtx_unlock_spin_flags((m), (opts), (file), (line))
395 #else   /* LOCK_DEBUG == 0 && !MUTEX_NOINLINE */
396 #define mtx_lock_flags_(m, opts, file, line)                            \
397         __mtx_lock((m), curthread, (opts), (file), (line))
398 #define mtx_unlock_flags_(m, opts, file, line)                          \
399         __mtx_unlock((m), curthread, (opts), (file), (line))
400 #define mtx_lock_spin_flags_(m, opts, file, line)                       \
401         __mtx_lock_spin((m), curthread, (opts), (file), (line))
402 #define mtx_trylock_spin_flags_(m, opts, file, line)                    \
403         __mtx_trylock_spin((m), curthread, (opts), (file), (line))
404 #define mtx_unlock_spin_flags_(m, opts, file, line)                     \
405         __mtx_unlock_spin((m))
406 #endif  /* LOCK_DEBUG > 0 || MUTEX_NOINLINE */
407
408 #ifdef INVARIANTS
409 #define mtx_assert_(m, what, file, line)                                \
410         _mtx_assert((m), (what), (file), (line))
411
412 #define GIANT_REQUIRED  mtx_assert_(&Giant, MA_OWNED, __FILE__, __LINE__)
413
414 #else   /* INVARIANTS */
415 #define mtx_assert_(m, what, file, line)        (void)0
416 #define GIANT_REQUIRED
417 #endif  /* INVARIANTS */
418
419 #define mtx_lock_flags(m, opts)                                         \
420         mtx_lock_flags_((m), (opts), LOCK_FILE, LOCK_LINE)
421 #define mtx_unlock_flags(m, opts)                                       \
422         mtx_unlock_flags_((m), (opts), LOCK_FILE, LOCK_LINE)
423 #define mtx_lock_spin_flags(m, opts)                                    \
424         mtx_lock_spin_flags_((m), (opts), LOCK_FILE, LOCK_LINE)
425 #define mtx_unlock_spin_flags(m, opts)                                  \
426         mtx_unlock_spin_flags_((m), (opts), LOCK_FILE, LOCK_LINE)
427 #define mtx_trylock_flags(m, opts)                                      \
428         mtx_trylock_flags_((m), (opts), LOCK_FILE, LOCK_LINE)
429 #define mtx_trylock_spin_flags(m, opts)                                 \
430         mtx_trylock_spin_flags_((m), (opts), LOCK_FILE, LOCK_LINE)
431 #define mtx_assert(m, what)                                             \
432         mtx_assert_((m), (what), __FILE__, __LINE__)
433
434 #define mtx_sleep(chan, mtx, pri, wmesg, timo)                          \
435         _sleep((chan), &(mtx)->lock_object, (pri), (wmesg),             \
436             tick_sbt * (timo), 0, C_HARDCLOCK)
437
438 #define MTX_READ_VALUE(m)       ((m)->mtx_lock)
439
440 #define mtx_initialized(m)      lock_initialized(&(m)->lock_object)
441
442 #define lv_mtx_owner(v) ((struct thread *)((v) & ~MTX_FLAGMASK))
443
444 #define mtx_owner(m)    lv_mtx_owner(MTX_READ_VALUE(m))
445
446 #define mtx_owned(m)    (mtx_owner(m) == curthread)
447
448 #define mtx_recursed(m) ((m)->mtx_recurse != 0)
449
450 #define mtx_name(m)     ((m)->lock_object.lo_name)
451
452 /*
453  * Global locks.
454  */
455 extern struct mtx Giant;
456 extern struct mtx blocked_lock;
457
458 /*
459  * Giant lock manipulation and clean exit macros.
460  * Used to replace return with an exit Giant and return.
461  *
462  * Note that DROP_GIANT*() needs to be paired with PICKUP_GIANT() 
463  * The #ifndef is to allow lint-like tools to redefine DROP_GIANT.
464  */
465 #ifndef DROP_GIANT
466 #define DROP_GIANT()                                                    \
467 do {                                                                    \
468         int _giantcnt = 0;                                              \
469         WITNESS_SAVE_DECL(Giant);                                       \
470                                                                         \
471         if (mtx_owned(&Giant)) {                                        \
472                 WITNESS_SAVE(&Giant.lock_object, Giant);                \
473                 for (_giantcnt = 0; mtx_owned(&Giant) &&                \
474                     !SCHEDULER_STOPPED(); _giantcnt++)                  \
475                         mtx_unlock(&Giant);                             \
476         }
477
478 #define PICKUP_GIANT()                                                  \
479         PARTIAL_PICKUP_GIANT();                                         \
480 } while (0)
481
482 #define PARTIAL_PICKUP_GIANT()                                          \
483         mtx_assert(&Giant, MA_NOTOWNED);                                \
484         if (_giantcnt > 0) {                                            \
485                 while (_giantcnt--)                                     \
486                         mtx_lock(&Giant);                               \
487                 WITNESS_RESTORE(&Giant.lock_object, Giant);             \
488         }
489 #endif
490
491 struct mtx_args {
492         void            *ma_mtx;
493         const char      *ma_desc;
494         int              ma_opts;
495 };
496
497 #define MTX_SYSINIT(name, mtx, desc, opts)                              \
498         static struct mtx_args name##_args = {                          \
499                 (mtx),                                                  \
500                 (desc),                                                 \
501                 (opts)                                                  \
502         };                                                              \
503         SYSINIT(name##_mtx_sysinit, SI_SUB_LOCK, SI_ORDER_MIDDLE,       \
504             mtx_sysinit, &name##_args);                                 \
505         SYSUNINIT(name##_mtx_sysuninit, SI_SUB_LOCK, SI_ORDER_MIDDLE,   \
506             _mtx_destroy, __DEVOLATILE(void *, &(mtx)->mtx_lock))
507
508 /*
509  * The INVARIANTS-enabled mtx_assert() functionality.
510  *
511  * The constants need to be defined for INVARIANT_SUPPORT infrastructure
512  * support as _mtx_assert() itself uses them and the latter implies that
513  * _mtx_assert() must build.
514  */
515 #if defined(INVARIANTS) || defined(INVARIANT_SUPPORT)
516 #define MA_OWNED        LA_XLOCKED
517 #define MA_NOTOWNED     LA_UNLOCKED
518 #define MA_RECURSED     LA_RECURSED
519 #define MA_NOTRECURSED  LA_NOTRECURSED
520 #endif
521
522 /*
523  * Common lock type names.
524  */
525 #define MTX_NETWORK_LOCK        "network driver"
526
527 #endif  /* _KERNEL */
528 #endif  /* _SYS_MUTEX_H_ */