Home
last modified time | relevance | path

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

/f-stack/freebsd/net/
H A Dif_bridge.c207 mtx_init(&(_sc)->sc_rt_mtx, "if_bridge rt", NULL, MTX_DEF); \
211 mtx_destroy(&(_sc)->sc_rt_mtx); \
219 #define BRIDGE_RT_LOCK(_sc) mtx_lock(&(_sc)->sc_rt_mtx)
220 #define BRIDGE_RT_UNLOCK(_sc) mtx_unlock(&(_sc)->sc_rt_mtx)
221 #define BRIDGE_RT_LOCK_ASSERT(_sc) mtx_assert(&(_sc)->sc_rt_mtx, MA_OWNED)
223 MPASS(in_epoch(net_epoch_preempt) || mtx_owned(&(_sc)->sc_rt_mtx))
263 struct mtx sc_rt_mtx; member
698 callout_init_mtx(&sc->sc_brcallout, &sc->sc_rt_mtx, 0); in bridge_clone_create()