Searched refs:VTBLK_MTX (Results 1 - 1 of 1) sorted by relevance

/freebsd-11-stable/sys/dev/virtio/block/
H A Dvirtio_blk.c213 #define VTBLK_MTX(_sc) &(_sc)->vtblk_mtx macro
215 mtx_init(VTBLK_MTX((_sc)), (_name), \
217 #define VTBLK_LOCK(_sc) mtx_lock(VTBLK_MTX((_sc)))
218 #define VTBLK_UNLOCK(_sc) mtx_unlock(VTBLK_MTX((_sc)))
219 #define VTBLK_LOCK_DESTROY(_sc) mtx_destroy(VTBLK_MTX((_sc)))
220 #define VTBLK_LOCK_ASSERT(_sc) mtx_assert(VTBLK_MTX((_sc)), MA_OWNED)
222 mtx_assert(VTBLK_MTX((_sc)), MA_NOTOWNED)
1204 if (mtx_sleep(&sc->vtblk_vq, VTBLK_MTX(sc), PRIBIO, "vtblkq",

Completed in 103 milliseconds