Home
last modified time | relevance | path

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

/freebsd/sys/net/
H A Dbridgestp.h337 struct mtx bs_mtx; member
364 #define BSTP_LOCK_INIT(_bs) mtx_init(&(_bs)->bs_mtx, "bstp", NULL, MTX_DEF)
365 #define BSTP_LOCK_DESTROY(_bs) mtx_destroy(&(_bs)->bs_mtx)
366 #define BSTP_LOCK(_bs) mtx_lock(&(_bs)->bs_mtx)
367 #define BSTP_UNLOCK(_bs) mtx_unlock(&(_bs)->bs_mtx)
368 #define BSTP_LOCK_ASSERT(_bs) mtx_assert(&(_bs)->bs_mtx, MA_OWNED)
H A Dbridgestp.c2163 callout_init_mtx(&bs->bs_bstpcallout, &bs->bs_mtx, 0); in bstp_attach()