Home
last modified time | relevance | path

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

/freebsd-12-stable/sys/netinet6/
Dsend.c73 struct mtx send_mtx; variable
74 #define SEND_LOCK_INIT() mtx_init(&send_mtx, "send_mtx", NULL, MTX_DEF)
75 #define SEND_LOCK() mtx_lock(&send_mtx)
76 #define SEND_UNLOCK() mtx_unlock(&send_mtx)
77 #define SEND_LOCK_DESTROY() mtx_destroy(&send_mtx)
/freebsd-12-stable/sys/cam/
Dcam_xpt.c334 mtx_assert(&devq->send_mtx, MA_OWNED); in xpt_schedule_devq()
2710 mtx_lock(&devq->send_mtx); in xpt_action_default()
2714 mtx_unlock(&devq->send_mtx); in xpt_action_default()
2751 mtx_lock(&devq->send_mtx); in xpt_action_default()
2757 mtx_unlock(&devq->send_mtx); in xpt_action_default()
2762 mtx_unlock(&devq->send_mtx); in xpt_action_default()
2859 mtx_lock(&devq->send_mtx); in xpt_action_default()
2870 mtx_unlock(&devq->send_mtx); in xpt_action_default()
3079 mtx_lock(&dev->sim->devq->send_mtx); in xpt_action_default()
3132 mtx_unlock(&dev->sim->devq->send_mtx); in xpt_action_default()
[all …]
Dcam_queue.c238 mtx_init(&devq->send_mtx, "CAM queue lock", NULL, MTX_DEF); in cam_devq_init()
251 mtx_destroy(&devq->send_mtx); in cam_devq_free()
Dcam_queue.h75 struct mtx send_mtx; member