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

/freebsd-10.2-release/sys/dev/vxge/
H A Dvxge.h151 #define VXGE_TX_LOCK(x) mtx_lock(&(x)->mtx_tx)
152 #define VXGE_TX_TRYLOCK(x) mtx_trylock(&(x)->mtx_tx)
153 #define VXGE_TX_UNLOCK(x) mtx_unlock(&(x)->mtx_tx)
154 #define VXGE_TX_LOCK_DESTROY(x) mtx_destroy(&(x)->mtx_tx)
155 #define VXGE_TX_LOCK_ASSERT(x) mtx_assert(&(x)->mtx_tx, MA_OWNED)
336 struct mtx mtx_tx; member in struct:_vxge_vpath_t
H A Dvxge.c2051 mtx_init(&vdev->vpaths[i].mtx_tx,
2298 M_WAITOK, &vpath->mtx_tx);
/freebsd-10.2-release/sys/dev/nxge/
H A Dif_nxge.h286 struct mtx mtx_tx[XGE_FIFO_COUNT]; member in struct:xge_lldev_t
H A Dif_nxge.c512 mtx_init(&lldev->mtx_tx[qindex], lldev->mtx_name_tx[qindex], NULL,
529 mtx_destroy(&lldev->mtx_tx[qindex]);
2978 if(mtx_trylock(&lldev->mtx_tx[qindex]) == 0) {
2983 mtx_unlock(&lldev->mtx_tx[qindex]);
3264 mtx_lock(&lldev->mtx_tx[qindex]);
3292 mtx_unlock(&lldev->mtx_tx[qindex]);

Completed in 100 milliseconds