Lines Matching full:txc
759 struct vmxnet3_comp_ring *txc; in vmxnet3_init_txq() local
764 txc = &txq->vxtxq_comp_ring; in vmxnet3_init_txq()
773 txc->vxcr_ndesc = scctx->isc_ntxd[0]; in vmxnet3_init_txq()
820 struct vmxnet3_comp_ring *txc; in vmxnet3_tx_queues_alloc() local
823 txc = &txq->vxtxq_comp_ring; in vmxnet3_tx_queues_alloc()
827 txc->vxcr_u.txcd = in vmxnet3_tx_queues_alloc()
829 txc->vxcr_paddr = paddrs[q * ntxqs + 0]; in vmxnet3_tx_queues_alloc()
1407 struct vmxnet3_comp_ring *txc; in vmxnet3_isc_txd_credits_update() local
1414 txc = &txq->vxtxq_comp_ring; in vmxnet3_isc_txd_credits_update()
1425 txcd = &txc->vxcr_u.txcd[txc->vxcr_next]; in vmxnet3_isc_txd_credits_update()
1426 if (txcd->gen != txc->vxcr_gen) in vmxnet3_isc_txd_credits_update()
1432 MPASS(txc->vxcr_next < txc->vxcr_ndesc); in vmxnet3_isc_txd_credits_update()
1433 if (++txc->vxcr_next >= txc->vxcr_ndesc) { in vmxnet3_isc_txd_credits_update()
1434 txc->vxcr_next = 0; in vmxnet3_isc_txd_credits_update()
1435 txc->vxcr_gen ^= 1; in vmxnet3_isc_txd_credits_update()
1824 struct vmxnet3_comp_ring *txc; in vmxnet3_txinit() local
1836 txc = &txq->vxtxq_comp_ring; in vmxnet3_txinit()
1837 txc->vxcr_next = 0; in vmxnet3_txinit()
1838 txc->vxcr_gen = VMXNET3_INIT_GEN; in vmxnet3_txinit()