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

/freebsd-12-stable/sys/netinet/
H A Dtcp_log_buf.c218 #define TCPID_BUCKET_LOCK_INIT(tlb) mtx_init(&((tlb)->tlb_mtx), "tcp log id bucket", NULL, MTX_DEF)
219 #define TCPID_BUCKET_LOCK_DESTROY(tlb) mtx_destroy(&((tlb)->tlb_mtx))
220 #define TCPID_BUCKET_LOCK(tlb) mtx_lock(&((tlb)->tlb_mtx))
221 #define TCPID_BUCKET_UNLOCK(tlb) mtx_unlock(&((tlb)->tlb_mtx))
222 #define TCPID_BUCKET_LOCK_ASSERT(tlb) mtx_assert(&((tlb)->tlb_mtx), MA_OWNED)
223 #define TCPID_BUCKET_UNLOCK_ASSERT(tlb) mtx_assert(&((tlb)->tlb_mtx), MA_NOTOWNED)
242 struct mtx tlb_mtx; member in struct:tcp_log_id_bucket
692 * and lock this. Note that we zero the tlb_mtx
699 memset(&tlb->tlb_mtx, 0, sizeof(struct mtx));

Completed in 157 milliseconds