Home
last modified time | relevance | path

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

/freebsd/sys/netinet/
H A Dtcp_fastopen.c378 #define CCB_LOCK(ccb) mtx_lock(&(ccb)->ccb_mtx)
379 #define CCB_UNLOCK(ccb) mtx_unlock(&(ccb)->ccb_mtx)
380 #define CCB_LOCK_ASSERT(ccb) mtx_assert(&(ccb)->ccb_mtx, MA_OWNED)
419 mtx_init(&V_tcp_fastopen_ccache.base[i].ccb_mtx, "tfo_ccache_bucket", in tcp_fastopen_init()
454 mtx_destroy(&ccb->ccb_mtx); in tcp_fastopen_destroy()
H A Dtcp_fastopen.h67 struct mtx ccb_mtx; member