Lines Matching refs:txm_seg
344 struct rte_mbuf *txm_seg; in ionic_tx_tso() local
414 txm_seg = txm->next; in ionic_tx_tso()
415 while (txm_seg != NULL) { in ionic_tx_tso()
417 data_iova = rte_mbuf_data_iova(txm_seg); in ionic_tx_tso()
418 left = txm_seg->data_len; in ionic_tx_tso()
438 if (txm_seg->next != NULL && frag_left > 0) in ionic_tx_tso()
441 done = (txm_seg->next == NULL && left == 0); in ionic_tx_tso()
442 ionic_tx_tso_post(q, desc, txm_seg, in ionic_tx_tso()
452 txm_seg = txm_seg->next; in ionic_tx_tso()
468 struct rte_mbuf *txm_seg; in ionic_tx() local
516 txm_seg = txm->next; in ionic_tx()
517 while (txm_seg != NULL) { in ionic_tx()
518 elem->len = txm_seg->data_len; in ionic_tx()
519 elem->addr = rte_cpu_to_le_64(rte_mbuf_data_iova(txm_seg)); in ionic_tx()
521 txm_seg = txm_seg->next; in ionic_tx()