2 * Copyright (c) 1998 Berkeley Software Design, Inc. All rights reserved.
4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions
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
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
28 * from BSDI $Id: mutex_witness.c,v 1.1.2.20 2000/04/27 03:10:27 cp Exp $
29 * and BSDI $Id: synch_machdep.c,v 2.3.2.39 2000/04/27 03:10:25 cp Exp $
33 * Machine independent bits of mutex implementation.
36 #include <sys/cdefs.h>
37 __FBSDID("$FreeBSD$");
39 #include "opt_adaptive_mutexes.h"
41 #include "opt_global.h"
42 #include "opt_sched.h"
44 #include <sys/param.h>
45 #include <sys/systm.h>
49 #include <sys/kernel.h>
52 #include <sys/malloc.h>
53 #include <sys/mutex.h>
55 #include <sys/resourcevar.h>
56 #include <sys/sched.h>
58 #include <sys/sysctl.h>
59 #include <sys/turnstile.h>
60 #include <sys/vmmeter.h>
61 #include <sys/lock_profile.h>
63 #include <machine/atomic.h>
64 #include <machine/bus.h>
65 #include <machine/cpu.h>
69 #include <fs/devfs/devfs_int.h>
72 #include <vm/vm_extern.h>
74 #if defined(SMP) && !defined(NO_ADAPTIVE_MUTEXES)
75 #define ADAPTIVE_MUTEXES
79 * Internal utility macros.
81 #define mtx_unowned(m) ((m)->mtx_lock == MTX_UNOWNED)
83 #define mtx_destroyed(m) ((m)->mtx_lock == MTX_DESTROYED)
85 #define mtx_owner(m) ((struct thread *)((m)->mtx_lock & ~MTX_FLAGMASK))
87 static void assert_mtx(struct lock_object
*lock
, int what
);
89 static void db_show_mtx(struct lock_object
*lock
);
91 static void lock_mtx(struct lock_object
*lock
, int how
);
92 static void lock_spin(struct lock_object
*lock
, int how
);
93 static int unlock_mtx(struct lock_object
*lock
);
94 static int unlock_spin(struct lock_object
*lock
);
97 * Lock classes for sleep and spin mutexes.
99 struct lock_class lock_class_mtx_sleep
= {
100 .lc_name
= "sleep mutex",
101 .lc_flags
= LC_SLEEPLOCK
| LC_RECURSABLE
,
102 .lc_assert
= assert_mtx
,
104 .lc_ddb_show
= db_show_mtx
,
107 .lc_unlock
= unlock_mtx
,
109 struct lock_class lock_class_mtx_spin
= {
110 .lc_name
= "spin mutex",
111 .lc_flags
= LC_SPINLOCK
| LC_RECURSABLE
,
112 .lc_assert
= assert_mtx
,
114 .lc_ddb_show
= db_show_mtx
,
116 .lc_lock
= lock_spin
,
117 .lc_unlock
= unlock_spin
,
121 * System-wide mutexes
123 struct mtx blocked_lock
;
127 assert_mtx(struct lock_object
*lock
, int what
)
130 mtx_assert((struct mtx
*)lock
, what
);
134 lock_mtx(struct lock_object
*lock
, int how
)
137 mtx_lock((struct mtx
*)lock
);
141 lock_spin(struct lock_object
*lock
, int how
)
144 panic("spin locks can only use msleep_spin");
148 unlock_mtx(struct lock_object
*lock
)
152 m
= (struct mtx
*)lock
;
153 mtx_assert(m
, MA_OWNED
| MA_NOTRECURSED
);
159 unlock_spin(struct lock_object
*lock
)
162 panic("spin locks can only use msleep_spin");
166 * Function versions of the inlined __mtx_* macros. These are used by
167 * modules and can also be called from assembly language if needed.
170 _mtx_lock_flags(struct mtx
*m
, int opts
, const char *file
, int line
)
173 MPASS(curthread
!= NULL
);
174 KASSERT(m
->mtx_lock
!= MTX_DESTROYED
,
175 ("mtx_lock() of destroyed mutex @ %s:%d", file
, line
));
176 KASSERT(LOCK_CLASS(&m
->lock_object
) == &lock_class_mtx_sleep
,
177 ("mtx_lock() of spin mutex %s @ %s:%d", m
->lock_object
.lo_name
,
179 WITNESS_CHECKORDER(&m
->lock_object
, opts
| LOP_NEWORDER
| LOP_EXCLUSIVE
,
182 _get_sleep_lock(m
, curthread
, opts
, file
, line
);
183 LOCK_LOG_LOCK("LOCK", &m
->lock_object
, opts
, m
->mtx_recurse
, file
,
185 WITNESS_LOCK(&m
->lock_object
, opts
| LOP_EXCLUSIVE
, file
, line
);
186 curthread
->td_locks
++;
190 _mtx_unlock_flags(struct mtx
*m
, int opts
, const char *file
, int line
)
192 MPASS(curthread
!= NULL
);
193 KASSERT(m
->mtx_lock
!= MTX_DESTROYED
,
194 ("mtx_unlock() of destroyed mutex @ %s:%d", file
, line
));
195 KASSERT(LOCK_CLASS(&m
->lock_object
) == &lock_class_mtx_sleep
,
196 ("mtx_unlock() of spin mutex %s @ %s:%d", m
->lock_object
.lo_name
,
198 curthread
->td_locks
--;
199 WITNESS_UNLOCK(&m
->lock_object
, opts
| LOP_EXCLUSIVE
, file
, line
);
200 LOCK_LOG_LOCK("UNLOCK", &m
->lock_object
, opts
, m
->mtx_recurse
, file
,
202 mtx_assert(m
, MA_OWNED
);
204 if (m
->mtx_recurse
== 0)
205 lock_profile_release_lock(&m
->lock_object
);
206 _rel_sleep_lock(m
, curthread
, opts
, file
, line
);
210 _mtx_lock_spin_flags(struct mtx
*m
, int opts
, const char *file
, int line
)
213 MPASS(curthread
!= NULL
);
214 KASSERT(m
->mtx_lock
!= MTX_DESTROYED
,
215 ("mtx_lock_spin() of destroyed mutex @ %s:%d", file
, line
));
216 KASSERT(LOCK_CLASS(&m
->lock_object
) == &lock_class_mtx_spin
,
217 ("mtx_lock_spin() of sleep mutex %s @ %s:%d",
218 m
->lock_object
.lo_name
, file
, line
));
220 KASSERT((m
->lock_object
.lo_flags
& LO_RECURSABLE
) != 0,
221 ("mtx_lock_spin: recursed on non-recursive mutex %s @ %s:%d\n",
222 m
->lock_object
.lo_name
, file
, line
));
223 WITNESS_CHECKORDER(&m
->lock_object
, opts
| LOP_NEWORDER
| LOP_EXCLUSIVE
,
225 _get_spin_lock(m
, curthread
, opts
, file
, line
);
226 LOCK_LOG_LOCK("LOCK", &m
->lock_object
, opts
, m
->mtx_recurse
, file
,
228 WITNESS_LOCK(&m
->lock_object
, opts
| LOP_EXCLUSIVE
, file
, line
);
232 _mtx_unlock_spin_flags(struct mtx
*m
, int opts
, const char *file
, int line
)
235 MPASS(curthread
!= NULL
);
236 KASSERT(m
->mtx_lock
!= MTX_DESTROYED
,
237 ("mtx_unlock_spin() of destroyed mutex @ %s:%d", file
, line
));
238 KASSERT(LOCK_CLASS(&m
->lock_object
) == &lock_class_mtx_spin
,
239 ("mtx_unlock_spin() of sleep mutex %s @ %s:%d",
240 m
->lock_object
.lo_name
, file
, line
));
241 WITNESS_UNLOCK(&m
->lock_object
, opts
| LOP_EXCLUSIVE
, file
, line
);
242 LOCK_LOG_LOCK("UNLOCK", &m
->lock_object
, opts
, m
->mtx_recurse
, file
,
244 mtx_assert(m
, MA_OWNED
);
250 * The important part of mtx_trylock{,_flags}()
251 * Tries to acquire lock `m.' If this function is called on a mutex that
252 * is already owned, it will recursively acquire the lock.
255 _mtx_trylock(struct mtx
*m
, int opts
, const char *file
, int line
)
257 int rval
, contested
= 0;
258 uint64_t waittime
= 0;
260 MPASS(curthread
!= NULL
);
261 KASSERT(m
->mtx_lock
!= MTX_DESTROYED
,
262 ("mtx_trylock() of destroyed mutex @ %s:%d", file
, line
));
263 KASSERT(LOCK_CLASS(&m
->lock_object
) == &lock_class_mtx_sleep
,
264 ("mtx_trylock() of spin mutex %s @ %s:%d", m
->lock_object
.lo_name
,
267 if (mtx_owned(m
) && (m
->lock_object
.lo_flags
& LO_RECURSABLE
) != 0) {
269 atomic_set_ptr(&m
->mtx_lock
, MTX_RECURSED
);
272 rval
= _obtain_lock(m
, (uintptr_t)curthread
);
274 LOCK_LOG_TRY("LOCK", &m
->lock_object
, opts
, rval
, file
, line
);
276 WITNESS_LOCK(&m
->lock_object
, opts
| LOP_EXCLUSIVE
| LOP_TRYLOCK
,
278 curthread
->td_locks
++;
279 if (m
->mtx_recurse
== 0)
280 lock_profile_obtain_lock_success(&m
->lock_object
, contested
,
281 waittime
, file
, line
);
289 * _mtx_lock_sleep: the tougher part of acquiring an MTX_DEF lock.
291 * We call this if the lock is either contested (i.e. we need to go to
292 * sleep waiting for it), or if we need to recurse on it.
295 _mtx_lock_sleep(struct mtx
*m
, uintptr_t tid
, int opts
, const char *file
,
298 struct turnstile
*ts
;
299 #ifdef ADAPTIVE_MUTEXES
300 volatile struct thread
*owner
;
306 uint64_t waittime
= 0;
310 KASSERT((m
->lock_object
.lo_flags
& LO_RECURSABLE
) != 0,
311 ("_mtx_lock_sleep: recursed on non-recursive mutex %s @ %s:%d\n",
312 m
->lock_object
.lo_name
, file
, line
));
314 atomic_set_ptr(&m
->mtx_lock
, MTX_RECURSED
);
315 if (LOCK_LOG_TEST(&m
->lock_object
, opts
))
316 CTR1(KTR_LOCK
, "_mtx_lock_sleep: %p recursing", m
);
320 lock_profile_obtain_lock_failed(&m
->lock_object
,
321 &contested
, &waittime
);
322 if (LOCK_LOG_TEST(&m
->lock_object
, opts
))
324 "_mtx_lock_sleep: %s contested (lock=%p) at %s:%d",
325 m
->lock_object
.lo_name
, (void *)m
->mtx_lock
, file
, line
);
327 while (!_obtain_lock(m
, tid
)) {
328 #ifdef ADAPTIVE_MUTEXES
330 * If the owner is running on another CPU, spin until the
331 * owner stops running or the state of the lock changes.
334 if (v
!= MTX_UNOWNED
) {
335 owner
= (struct thread
*)(v
& ~MTX_FLAGMASK
);
336 if (TD_IS_RUNNING(owner
)) {
337 if (LOCK_LOG_TEST(&m
->lock_object
, 0))
339 "%s: spinning on %p held by %p",
341 while (mtx_owner(m
) == owner
&&
342 TD_IS_RUNNING(owner
))
349 ts
= turnstile_trywait(&m
->lock_object
);
353 * Check if the lock has been released while spinning for
354 * the turnstile chain lock.
356 if (v
== MTX_UNOWNED
) {
357 turnstile_cancel(ts
);
362 MPASS(v
!= MTX_CONTESTED
);
364 #ifdef ADAPTIVE_MUTEXES
366 * If the current owner of the lock is executing on another
367 * CPU quit the hard path and try to spin.
369 owner
= (struct thread
*)(v
& ~MTX_FLAGMASK
);
370 if (TD_IS_RUNNING(owner
)) {
371 turnstile_cancel(ts
);
378 * If the mutex isn't already contested and a failure occurs
379 * setting the contested bit, the mutex was either released
380 * or the state of the MTX_RECURSED bit changed.
382 if ((v
& MTX_CONTESTED
) == 0 &&
383 !atomic_cmpset_ptr(&m
->mtx_lock
, v
, v
| MTX_CONTESTED
)) {
384 turnstile_cancel(ts
);
390 * We definitely must sleep for this lock.
392 mtx_assert(m
, MA_NOTOWNED
);
397 "contention: %p at %s:%d wants %s, taken by %s:%d",
398 (void *)tid
, file
, line
, m
->lock_object
.lo_name
,
399 WITNESS_FILE(&m
->lock_object
),
400 WITNESS_LINE(&m
->lock_object
));
406 * Block on the turnstile.
408 turnstile_wait(ts
, mtx_owner(m
), TS_EXCLUSIVE_QUEUE
);
413 "contention end: %s acquired by %p at %s:%d",
414 m
->lock_object
.lo_name
, (void *)tid
, file
, line
);
417 lock_profile_obtain_lock_success(&m
->lock_object
, contested
,
418 waittime
, file
, line
);
422 _mtx_lock_spin_failed(struct mtx
*m
)
428 /* If the mutex is unlocked, try again. */
432 printf( "spin lock %p (%s) held by %p (tid %d) too long\n",
433 m
, m
->lock_object
.lo_name
, td
, td
->td_tid
);
435 witness_display_spinlock(&m
->lock_object
, td
);
437 panic("spin lock held too long");
442 * _mtx_lock_spin: the tougher part of acquiring an MTX_SPIN lock.
444 * This is only called if we need to actually spin for the lock. Recursion
448 _mtx_lock_spin(struct mtx
*m
, uintptr_t tid
, int opts
, const char *file
,
451 int i
= 0, contested
= 0;
452 uint64_t waittime
= 0;
454 if (LOCK_LOG_TEST(&m
->lock_object
, opts
))
455 CTR1(KTR_LOCK
, "_mtx_lock_spin: %p spinning", m
);
457 lock_profile_obtain_lock_failed(&m
->lock_object
, &contested
, &waittime
);
458 while (!_obtain_lock(m
, tid
)) {
460 /* Give interrupts a chance while we spin. */
462 while (m
->mtx_lock
!= MTX_UNOWNED
) {
463 if (i
++ < 10000000) {
467 if (i
< 60000000 || kdb_active
|| panicstr
!= NULL
)
470 _mtx_lock_spin_failed(m
);
476 if (LOCK_LOG_TEST(&m
->lock_object
, opts
))
477 CTR1(KTR_LOCK
, "_mtx_lock_spin: %p spin done", m
);
479 lock_profile_obtain_lock_success(&m
->lock_object
, contested
,
480 waittime
, (file
), (line
));
485 _thread_lock_flags(struct thread
*td
, int opts
, const char *file
, int line
)
494 tid
= (uintptr_t)curthread
;
499 KASSERT(m
->mtx_lock
!= MTX_DESTROYED
,
500 ("thread_lock() of destroyed mutex @ %s:%d", file
, line
));
501 KASSERT(LOCK_CLASS(&m
->lock_object
) == &lock_class_mtx_spin
,
502 ("thread_lock() of sleep mutex %s @ %s:%d",
503 m
->lock_object
.lo_name
, file
, line
));
505 KASSERT((m
->lock_object
.lo_flags
& LO_RECURSABLE
) != 0,
506 ("thread_lock: recursed on non-recursive mutex %s @ %s:%d\n",
507 m
->lock_object
.lo_name
, file
, line
));
508 WITNESS_CHECKORDER(&m
->lock_object
,
509 opts
| LOP_NEWORDER
| LOP_EXCLUSIVE
, file
, line
);
510 while (!_obtain_lock(m
, tid
)) {
511 if (m
->mtx_lock
== tid
) {
515 lock_profile_obtain_lock_failed(&m
->lock_object
,
516 &contested
, &waittime
);
517 /* Give interrupts a chance while we spin. */
519 while (m
->mtx_lock
!= MTX_UNOWNED
) {
522 else if (i
< 60000000 ||
523 kdb_active
|| panicstr
!= NULL
)
526 _mtx_lock_spin_failed(m
);
528 if (m
!= td
->td_lock
)
533 if (m
== td
->td_lock
)
535 _rel_spin_lock(m
); /* does spinlock_exit() */
537 if (m
->mtx_recurse
== 0)
538 lock_profile_obtain_lock_success(&m
->lock_object
, contested
,
539 waittime
, (file
), (line
));
540 LOCK_LOG_LOCK("LOCK", &m
->lock_object
, opts
, m
->mtx_recurse
, file
,
542 WITNESS_LOCK(&m
->lock_object
, opts
| LOP_EXCLUSIVE
, file
, line
);
546 thread_lock_block(struct thread
*td
)
551 THREAD_LOCK_ASSERT(td
, MA_OWNED
);
553 td
->td_lock
= &blocked_lock
;
554 mtx_unlock_spin(lock
);
560 thread_lock_unblock(struct thread
*td
, struct mtx
*new)
562 mtx_assert(new, MA_OWNED
);
563 MPASS(td
->td_lock
== &blocked_lock
);
564 atomic_store_rel_ptr((volatile void *)&td
->td_lock
, (uintptr_t)new);
569 thread_lock_set(struct thread
*td
, struct mtx
*new)
573 mtx_assert(new, MA_OWNED
);
574 THREAD_LOCK_ASSERT(td
, MA_OWNED
);
577 mtx_unlock_spin(lock
);
581 * _mtx_unlock_sleep: the tougher part of releasing an MTX_DEF lock.
583 * We are only called here if the lock is recursed or contested (i.e. we
584 * need to wake up a blocked thread).
587 _mtx_unlock_sleep(struct mtx
*m
, int opts
, const char *file
, int line
)
589 struct turnstile
*ts
;
591 if (mtx_recursed(m
)) {
592 if (--(m
->mtx_recurse
) == 0)
593 atomic_clear_ptr(&m
->mtx_lock
, MTX_RECURSED
);
594 if (LOCK_LOG_TEST(&m
->lock_object
, opts
))
595 CTR1(KTR_LOCK
, "_mtx_unlock_sleep: %p unrecurse", m
);
600 * We have to lock the chain before the turnstile so this turnstile
601 * can be removed from the hash list if it is empty.
603 turnstile_chain_lock(&m
->lock_object
);
604 ts
= turnstile_lookup(&m
->lock_object
);
605 if (LOCK_LOG_TEST(&m
->lock_object
, opts
))
606 CTR1(KTR_LOCK
, "_mtx_unlock_sleep: %p contested", m
);
609 turnstile_broadcast(ts
, TS_EXCLUSIVE_QUEUE
);
610 _release_lock_quick(m
);
612 * This turnstile is now no longer associated with the mutex. We can
613 * unlock the chain lock so a new turnstile may take it's place.
615 turnstile_unpend(ts
, TS_EXCLUSIVE_LOCK
);
616 turnstile_chain_unlock(&m
->lock_object
);
620 * All the unlocking of MTX_SPIN locks is done inline.
621 * See the _rel_spin_lock() macro for the details.
625 * The backing function for the INVARIANTS-enabled mtx_assert()
627 #ifdef INVARIANT_SUPPORT
629 _mtx_assert(struct mtx
*m
, int what
, const char *file
, int line
)
632 if (panicstr
!= NULL
|| dumping
)
636 case MA_OWNED
| MA_RECURSED
:
637 case MA_OWNED
| MA_NOTRECURSED
:
639 panic("mutex %s not owned at %s:%d",
640 m
->lock_object
.lo_name
, file
, line
);
641 if (mtx_recursed(m
)) {
642 if ((what
& MA_NOTRECURSED
) != 0)
643 panic("mutex %s recursed at %s:%d",
644 m
->lock_object
.lo_name
, file
, line
);
645 } else if ((what
& MA_RECURSED
) != 0) {
646 panic("mutex %s unrecursed at %s:%d",
647 m
->lock_object
.lo_name
, file
, line
);
652 panic("mutex %s owned at %s:%d",
653 m
->lock_object
.lo_name
, file
, line
);
656 panic("unknown mtx_assert at %s:%d", file
, line
);
662 * The MUTEX_DEBUG-enabled mtx_validate()
664 * Most of these checks have been moved off into the LO_INITIALIZED flag
665 * maintained by the witness code.
669 void mtx_validate(struct mtx
*);
672 mtx_validate(struct mtx
*m
)
676 * XXX: When kernacc() does not require Giant we can reenable this check
680 * Can't call kernacc() from early init386(), especially when
681 * initializing Giant mutex, because some stuff in kernacc()
682 * requires Giant itself.
685 if (!kernacc((caddr_t
)m
, sizeof(m
),
686 VM_PROT_READ
| VM_PROT_WRITE
))
687 panic("Can't read and write to mutex %p", m
);
693 * General init routine used by the MTX_SYSINIT() macro.
696 mtx_sysinit(void *arg
)
698 struct mtx_args
*margs
= arg
;
700 mtx_init(margs
->ma_mtx
, margs
->ma_desc
, NULL
, margs
->ma_opts
);
704 * Mutex initialization routine; initialize lock `m' of type contained in
705 * `opts' with options contained in `opts' and name `name.' The optional
706 * lock type `type' is used as a general lock category name for use with
710 mtx_init(struct mtx
*m
, const char *name
, const char *type
, int opts
)
712 struct lock_class
*class;
715 MPASS((opts
& ~(MTX_SPIN
| MTX_QUIET
| MTX_RECURSE
|
716 MTX_NOWITNESS
| MTX_DUPOK
| MTX_NOPROFILE
)) == 0);
719 /* Diagnostic and error correction */
723 /* Determine lock class and lock flags. */
725 class = &lock_class_mtx_spin
;
727 class = &lock_class_mtx_sleep
;
729 if (opts
& MTX_QUIET
)
731 if (opts
& MTX_RECURSE
)
732 flags
|= LO_RECURSABLE
;
733 if ((opts
& MTX_NOWITNESS
) == 0)
735 if (opts
& MTX_DUPOK
)
737 if (opts
& MTX_NOPROFILE
)
738 flags
|= LO_NOPROFILE
;
740 /* Initialize mutex. */
741 m
->mtx_lock
= MTX_UNOWNED
;
744 lock_init(&m
->lock_object
, class, name
, type
, flags
);
748 * Remove lock `m' from all_mtx queue. We don't allow MTX_QUIET to be
749 * passed in as a flag here because if the corresponding mtx_init() was
750 * called with MTX_QUIET set, then it will already be set in the mutex's
754 mtx_destroy(struct mtx
*m
)
758 MPASS(mtx_unowned(m
));
760 MPASS((m
->mtx_lock
& (MTX_RECURSED
|MTX_CONTESTED
)) == 0);
762 /* Perform the non-mtx related part of mtx_unlock_spin(). */
763 if (LOCK_CLASS(&m
->lock_object
) == &lock_class_mtx_spin
)
766 curthread
->td_locks
--;
768 /* Tell witness this isn't locked to make it happy. */
769 WITNESS_UNLOCK(&m
->lock_object
, LOP_EXCLUSIVE
, __FILE__
,
773 m
->mtx_lock
= MTX_DESTROYED
;
774 lock_destroy(&m
->lock_object
);
778 * Intialize the mutex code and system mutexes. This is called from the MD
779 * startup code prior to mi_startup(). The per-CPU data space needs to be
780 * setup before this is called.
786 /* Setup turnstiles so that sleep mutexes work. */
790 * Initialize mutexes.
792 mtx_init(&Giant
, "Giant", NULL
, MTX_DEF
| MTX_RECURSE
);
793 mtx_init(&blocked_lock
, "blocked lock", NULL
, MTX_SPIN
);
794 blocked_lock
.mtx_lock
= 0xdeadc0de; /* Always blocked. */
795 mtx_init(&proc0
.p_mtx
, "process lock", NULL
, MTX_DEF
| MTX_DUPOK
);
796 mtx_init(&proc0
.p_slock
, "process slock", NULL
, MTX_SPIN
| MTX_RECURSE
);
797 mtx_init(&devmtx
, "cdev", NULL
, MTX_DEF
);
803 db_show_mtx(struct lock_object
*lock
)
808 m
= (struct mtx
*)lock
;
810 db_printf(" flags: {");
811 if (LOCK_CLASS(lock
) == &lock_class_mtx_spin
)
815 if (m
->lock_object
.lo_flags
& LO_RECURSABLE
)
816 db_printf(", RECURSE");
817 if (m
->lock_object
.lo_flags
& LO_DUPOK
)
818 db_printf(", DUPOK");
820 db_printf(" state: {");
822 db_printf("UNOWNED");
823 else if (mtx_destroyed(m
))
824 db_printf("DESTROYED");
827 if (m
->mtx_lock
& MTX_CONTESTED
)
828 db_printf(", CONTESTED");
829 if (m
->mtx_lock
& MTX_RECURSED
)
830 db_printf(", RECURSED");
833 if (!mtx_unowned(m
) && !mtx_destroyed(m
)) {
835 db_printf(" owner: %p (tid %d, pid %d, \"%s\")\n", td
,
836 td
->td_tid
, td
->td_proc
->p_pid
, td
->td_name
);
838 db_printf(" recursed: %d\n", m
->mtx_recurse
);