Searched refs:aq_mtx (Results 1 – 1 of 1) sorted by relevance
/freebsd/sys/kern/ |
H A D | kern_alq.c | 73 struct mtx aq_mtx; /* Queue lock */ member 87 #define ALQ_LOCK(alq) mtx_lock_spin(&(alq)->aq_mtx) 88 #define ALQ_UNLOCK(alq) mtx_unlock_spin(&(alq)->aq_mtx) 287 msleep_spin(alq, &alq->aq_mtx, "aldclose", 0); in alq_shutdown() 302 mtx_destroy(&alq->aq_mtx); in alq_destroy() 460 mtx_init(&alq->aq_mtx, "ALD Queue", NULL, MTX_SPIN|MTX_QUIET); in alq_open_flags() 548 msleep_spin(&alq->aq_waiters, &alq->aq_mtx, "alqwnord", 0); in alq_writen() 566 msleep_spin(alq, &alq->aq_mtx, "alqwnres", 0); in alq_writen() 744 msleep_spin(&alq->aq_waiters, &alq->aq_mtx, "alqgnord", 0); in alq_getn() 762 msleep_spin(alq, &alq->aq_mtx, "alqgnres", 0); in alq_getn()
|