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

/freebsd-11.0-release/sys/dev/wb/
H A Dif_wbreg.h363 struct mtx wb_mtx; member in struct:wb_softc
366 #define WB_LOCK(_sc) mtx_lock(&(_sc)->wb_mtx)
367 #define WB_UNLOCK(_sc) mtx_unlock(&(_sc)->wb_mtx)
368 #define WB_LOCK_ASSERT(_sc) mtx_assert(&(_sc)->wb_mtx, MA_OWNED)
H A Dif_wb.c605 mtx_init(&sc->wb_mtx, device_get_nameunit(dev), MTX_NETWORK_LOCK,
607 callout_init_mtx(&sc->wb_stat_callout, &sc->wb_mtx, 0);
717 KASSERT(mtx_initialized(&sc->wb_mtx), ("wb mutex not initialized"));
750 mtx_destroy(&sc->wb_mtx);

Completed in 42 milliseconds