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

/freebsd-13-stable/sys/dev/virtio/block/
H A Dvirtio_blk.c227 #define VTBLK_MTX(_sc) &(_sc)->vtblk_mtx macro
229 mtx_init(VTBLK_MTX((_sc)), (_name), \
231 #define VTBLK_LOCK(_sc) mtx_lock(VTBLK_MTX((_sc)))
232 #define VTBLK_UNLOCK(_sc) mtx_unlock(VTBLK_MTX((_sc)))
233 #define VTBLK_LOCK_DESTROY(_sc) mtx_destroy(VTBLK_MTX((_sc)))
234 #define VTBLK_LOCK_ASSERT(_sc) mtx_assert(VTBLK_MTX((_sc)), MA_OWNED)
236 mtx_assert(VTBLK_MTX((_sc)), MA_NOTOWNED)
1274 if (mtx_sleep(&sc->vtblk_vq, VTBLK_MTX(sc), PRIBIO, "vtblkq",

Completed in 103 milliseconds