Home
last modified time | relevance | path

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

/freebsd/sys/dev/wpi/
H A Dif_wpivar.h183 struct mtx txq_state_mtx; member
290 mtx_init(&(_sc)->txq_state_mtx, "txq state lock", NULL, MTX_DEF)
291 #define WPI_TXQ_STATE_LOCK(_sc) mtx_lock(&(_sc)->txq_state_mtx)
292 #define WPI_TXQ_STATE_UNLOCK(_sc) mtx_unlock(&(_sc)->txq_state_mtx)
293 #define WPI_TXQ_STATE_LOCK_DESTROY(_sc) mtx_destroy(&(_sc)->txq_state_mtx)
H A Dif_wpi.c533 callout_init_mtx(&sc->tx_timeout, &sc->txq_state_mtx, 0); in wpi_attach()