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

/freebsd-11.0-release/sys/dev/pcn/
H A Dif_pcnreg.h467 struct mtx pcn_mtx; member in struct:pcn_softc
471 #define PCN_LOCK(_sc) mtx_lock(&(_sc)->pcn_mtx)
472 #define PCN_UNLOCK(_sc) mtx_unlock(&(_sc)->pcn_mtx)
473 #define PCN_LOCK_ASSERT(_sc) mtx_assert(&(_sc)->pcn_mtx, MA_OWNED)
H A Dif_pcn.c563 mtx_init(&sc->pcn_mtx, device_get_nameunit(dev), MTX_NETWORK_LOCK,
607 callout_init_mtx(&sc->pcn_stat_callout, &sc->pcn_mtx, 0);
703 KASSERT(mtx_initialized(&sc->pcn_mtx), ("pcn mutex not initialized"));
733 mtx_destroy(&sc->pcn_mtx);

Completed in 52 milliseconds