Home
last modified time | relevance | path

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

/freebsd/sys/dev/malo/
H A Dif_malo.h526 struct mtx malo_mtx; /* master lock (recursive) */ member
566 mtx_init(&(_sc)->malo_mtx, device_get_nameunit((_sc)->malo_dev), \
568 #define MALO_LOCK_DESTROY(_sc) mtx_destroy(&(_sc)->malo_mtx)
569 #define MALO_LOCK(_sc) mtx_lock(&(_sc)->malo_mtx)
570 #define MALO_UNLOCK(_sc) mtx_unlock(&(_sc)->malo_mtx)
571 #define MALO_LOCK_ASSERT(_sc) mtx_assert(&(_sc)->malo_mtx, MA_OWNED)
H A Dif_malo.c173 callout_init_mtx(&sc->malo_watchdog_timer, &sc->malo_mtx, 0); in malo_attach()