Lines Matching defs:it_mtx
177 struct mtx it_mtx;
180 kmutex_t it_mtx;
528 mtx_init(&sctppcbinfo.it_mtx, "sctp", "iterator", MTX_DEF)
530 if (mtx_owned(&sctppcbinfo.it_mtx)) \
532 mtx_lock(&sctppcbinfo.it_mtx); \
535 #define SCTP_ITERATOR_UNLOCK() mtx_unlock(&sctppcbinfo.it_mtx)
536 #define SCTP_ITERATOR_LOCK_DESTROY() mtx_destroy(&sctppcbinfo.it_mtx)
604 mutex_init(&sctppcbinfo.it_mtx, MUTEX_DEFAULT, IPL_NET)
606 if (mutex_owned(&sctppcbinfo.it_mtx)) \
608 mutex_enter(&sctppcbinfo.it_mtx); \
611 #define SCTP_ITERATOR_UNLOCK() mutex_exit(&sctppcbinfo.it_mtx)
612 #define SCTP_ITERATOR_LOCK_DESTROY() mutex_destroy(&sctppcbinfo.it_mtx)