Lines Matching refs:txb
1441 struct vmxnet3_txbuf *txb; in vmxnet3_free_txq_data() local
1451 txb = &txr->vxtxr_txbuf[i]; in vmxnet3_free_txq_data()
1452 if (txb->vtxb_dmamap != NULL) { in vmxnet3_free_txq_data()
1454 txb->vtxb_dmamap); in vmxnet3_free_txq_data()
1455 txb->vtxb_dmamap = NULL; in vmxnet3_free_txq_data()
2124 struct vmxnet3_txbuf *txb; in vmxnet3_txq_eof() local
2155 txb = &txr->vxtxr_txbuf[sop]; in vmxnet3_txq_eof()
2157 if ((m = txb->vtxb_m) != NULL) { in vmxnet3_txq_eof()
2158 bus_dmamap_sync(sc->vmx_dmat, txb->vtxb_dmamap, in vmxnet3_txq_eof()
2159 0, txb->vtxb_dmamap->dm_mapsize, in vmxnet3_txq_eof()
2161 bus_dmamap_unload(sc->vmx_dmat, txb->vtxb_dmamap); in vmxnet3_txq_eof()
2169 txb->vtxb_m = NULL; in vmxnet3_txq_eof()
2679 struct vmxnet3_txbuf *txb; in vmxnet3_txstop() local
2685 txb = &txr->vxtxr_txbuf[i]; in vmxnet3_txstop()
2687 if (txb->vtxb_m == NULL) in vmxnet3_txstop()
2690 bus_dmamap_sync(sc->vmx_dmat, txb->vtxb_dmamap, in vmxnet3_txstop()
2691 0, txb->vtxb_dmamap->dm_mapsize, in vmxnet3_txstop()
2693 bus_dmamap_unload(sc->vmx_dmat, txb->vtxb_dmamap); in vmxnet3_txstop()
2694 m_freem(txb->vtxb_m); in vmxnet3_txstop()
2695 txb->vtxb_m = NULL; in vmxnet3_txstop()