Lines Matching defs:txbf

1159 	struct rtw_txbuf *txbf;
1165 txbf = list_head(&rsc->sc_txq[i].tx_free_list);
1166 while (txbf != NULL) {
1167 rtw_free_dma_mem(&txbf->bf_dma);
1168 list_remove(&rsc->sc_txq[i].tx_free_list, txbf);
1169 txbf = list_head(&rsc->sc_txq[i].tx_free_list);
1172 txbf = list_head(&rsc->sc_txq[i].tx_dirty_list);
1173 while (txbf != NULL) {
1174 rtw_free_dma_mem(&txbf->bf_dma);
1175 list_remove(&rsc->sc_txq[i].tx_dirty_list, txbf);
1176 txbf = list_head(&rsc->sc_txq[i].tx_dirty_list);
1211 struct rtw_txbuf *txbf;
1255 txbf = (struct rtw_txbuf *)kmem_zalloc(buflen, KM_SLEEP);
1256 rsc->sc_txq[i].txbuf_h = txbf;
1257 for (j = 0; j < rtw_qlen[i]; j++, txbf++, txds++) {
1258 txbf->txdesc = txds;
1259 txbf->bf_daddr = ptx[i] + ((uintptr_t)txds -
1261 list_insert_tail(&rsc->sc_txq[i].tx_free_list, txbf);
1269 &txbf->bf_dma);
1273 j, txbf->bf_dma.cookie.dmac_address);
1329 struct rtw_txbuf *txbf;
1343 txbf = list_head(&rsc->sc_txq[i].tx_free_list);
1344 while (txbf != NULL) {
1345 list_remove(&rsc->sc_txq[i].tx_free_list, txbf);
1346 txbf = list_head(&rsc->sc_txq[i].tx_free_list);
1348 txbf = list_head(&rsc->sc_txq[i].tx_dirty_list);
1349 while (txbf != NULL) {
1350 list_remove(&rsc->sc_txq[i].tx_dirty_list, txbf);
1351 txbf = list_head(&rsc->sc_txq[i].tx_dirty_list);
1353 txbf = rsc->sc_txq[i].txbuf_h;
1357 list_insert_tail(&rsc->sc_txq[i].tx_free_list, txbf);
1365 txbf->txdesc->td_next = baddr_desc;
1367 txbf->txdesc->td_next = taddr_desc;
1369 txbf->next_bf_daddr = txbf->txdesc->td_next;
1370 RTW_DMA_SYNC(txbf->bf_dma, DDI_DMA_SYNC_FORDEV);
1371 txbf->order = j;
1372 txbf++;