Home
last modified time | relevance | path

Searched refs:send_mtx (Results 1 – 4 of 4) sorted by relevance

/freebsd/sys/netinet6/
H A Dsend.c71 struct mtx send_mtx; variable
72 #define SEND_LOCK_INIT() mtx_init(&send_mtx, "send_mtx", NULL, MTX_DEF)
73 #define SEND_LOCK() mtx_lock(&send_mtx)
74 #define SEND_UNLOCK() mtx_unlock(&send_mtx)
75 #define SEND_LOCK_DESTROY() mtx_destroy(&send_mtx)
/freebsd/sys/cam/
H A Dcam_xpt.c324 mtx_assert(&devq->send_mtx, MA_OWNED); in xpt_schedule_devq()
2589 mtx_lock(&devq->send_mtx); in xpt_action_default()
2593 mtx_unlock(&devq->send_mtx); in xpt_action_default()
2619 mtx_lock(&devq->send_mtx); in xpt_action_default()
2625 mtx_unlock(&devq->send_mtx); in xpt_action_default()
2630 mtx_unlock(&devq->send_mtx); in xpt_action_default()
2727 mtx_lock(&devq->send_mtx); in xpt_action_default()
2738 mtx_unlock(&devq->send_mtx); in xpt_action_default()
2944 mtx_lock(&dev->sim->devq->send_mtx); in xpt_action_default()
2988 mtx_unlock(&dev->sim->devq->send_mtx); in xpt_action_default()
[all …]
H A Dcam_queue.c200 mtx_init(&devq->send_mtx, "CAM queue lock", NULL, MTX_DEF); in cam_devq_init()
213 mtx_destroy(&devq->send_mtx); in cam_devq_free()
H A Dcam_queue.h73 struct mtx send_mtx; member