HomeSort by: relevance | last modified time | path
    Searched refs:inp_mtx (Results 1 - 3 of 3) sorted by relevancy

  /src/sys/netinet/
sctp_pcb.h 336 struct mtx inp_mtx; member in struct:sctp_inpcb
340 kmutex_t inp_mtx; member in struct:sctp_inpcb
448 mtx_init(&(_inp)->inp_mtx, "sctp", "inp", MTX_DEF | MTX_DUPOK)
454 #define SCTP_INP_LOCK_DESTROY(_inp) mtx_destroy(&(_inp)->inp_mtx)
464 if (mtx_owned(&(_inp)->inp_mtx)) \
466 mtx_lock(&(_inp)->inp_mtx); \
475 if (mtx_owned(&(_inp)->inp_mtx)) \
477 mtx_lock(&(_inp)->inp_mtx); \
502 #define SCTP_INP_RUNLOCK(_inp) mtx_unlock(&(_inp)->inp_mtx)
503 #define SCTP_INP_WUNLOCK(_inp) mtx_unlock(&(_inp)->inp_mtx)
    [all...]
sctp_pcb.c 134 if (mtx_owned(&(inp)->inp_mtx))
136 mtx_lock(&(inp)->inp_mtx);
151 if (mtx_owned(&(inp)->inp_mtx))
179 if (mtx_owned(&(inp)->inp_mtx))
dccp_usrreq.c 1141 KASSERT(mutex_assert(&dp->d_inpcb->inp_mtx, MA_OWNED));

Completed in 28 milliseconds