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

/freebsd-10.2-release/sys/dev/virtio/balloon/
H A Dvirtio_balloon.c128 #define VTBALLOON_MTX(_sc) &(_sc)->vtballoon_mtx macro
129 #define VTBALLOON_LOCK_INIT(_sc, _name) mtx_init(VTBALLOON_MTX((_sc)), _name, \
131 #define VTBALLOON_LOCK(_sc) mtx_lock(VTBALLOON_MTX((_sc)))
132 #define VTBALLOON_UNLOCK(_sc) mtx_unlock(VTBALLOON_MTX((_sc)))
133 #define VTBALLOON_LOCK_DESTROY(_sc) mtx_destroy(VTBALLOON_MTX((_sc)))
237 msleep(sc->vtballoon_td, VTBALLOON_MTX(sc), 0, "vtbdth", 0);
412 msleep(sc, VTBALLOON_MTX(sc), 0, "vtbspf", 0);
511 msleep(sc, VTBALLOON_MTX(sc), 0, "vtbslp", timeout);

Completed in 89 milliseconds