Home
last modified time | relevance | path

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

/freebsd/sys/dev/virtio/balloon/
H A Dvirtio_balloon.c132 #define VTBALLOON_MTX(_sc) &(_sc)->vtballoon_mtx macro
133 #define VTBALLOON_LOCK_INIT(_sc, _name) mtx_init(VTBALLOON_MTX((_sc)), _name, \
135 #define VTBALLOON_LOCK(_sc) mtx_lock(VTBALLOON_MTX((_sc)))
136 #define VTBALLOON_UNLOCK(_sc) mtx_unlock(VTBALLOON_MTX((_sc)))
137 #define VTBALLOON_LOCK_DESTROY(_sc) mtx_destroy(VTBALLOON_MTX((_sc)))
240 msleep(sc->vtballoon_td, VTBALLOON_MTX(sc), 0, "vtbdth", 0); in vtballoon_detach()
429 msleep(sc, VTBALLOON_MTX(sc), 0, "vtbspf", 0); in vtballoon_send_page_frames()
533 msleep(sc, VTBALLOON_MTX(sc), 0, "vtbslp", timeout); in vtballoon_sleep()