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

/freebsd-10.1-release/sys/net/
H A Dif_gif.h60 struct mtx gif_mtx; member in struct:gif_softc
78 #define GIF_LOCK_INIT(sc) mtx_init(&(sc)->gif_mtx, "gif softc", \
80 #define GIF_LOCK_DESTROY(sc) mtx_destroy(&(sc)->gif_mtx)
81 #define GIF_LOCK(sc) mtx_lock(&(sc)->gif_mtx)
82 #define GIF_UNLOCK(sc) mtx_unlock(&(sc)->gif_mtx)
83 #define GIF_LOCK_ASSERT(sc) mtx_assert(&(sc)->gif_mtx, MA_OWNED)
H A Dif_gif.c94 * gif_mtx protects the global gif_softc_list.
96 static struct mtx gif_mtx; variable in typeref:struct:mtx
194 mtx_lock(&gif_mtx);
196 mtx_unlock(&gif_mtx);
210 mtx_lock(&gif_mtx);
212 mtx_unlock(&gif_mtx);
257 mtx_init(&gif_mtx, "gif_mtx", NULL, MTX_DEF);
264 mtx_destroy(&gif_mtx);
961 mtx_lock(&gif_mtx);
[all...]

Completed in 157 milliseconds