Lines Matching refs:txbuf
342 struct ixgbe_tx_buf *txbuf; local
360 txbuf = &txr->tx_buffers[first];
361 map = txbuf->map;
440 txbuf = &txr->tx_buffers[i];
459 txbuf->m_head = m_head;
466 txr->tx_buffers[first].map = txbuf->map;
467 txbuf->map = map;
471 txbuf = &txr->tx_buffers[first];
472 txbuf->eop = txd;
503 struct ixgbe_tx_buf *txbuf; local
535 txbuf = txr->tx_buffers;
536 for (i = 0; i < adapter->num_tx_desc; i++, txbuf++) {
537 error = bus_dmamap_create(txr->txtag, 0, &txbuf->map);
560 struct ixgbe_tx_buf *txbuf; local
582 txbuf = txr->tx_buffers;
583 for (int i = 0; i < txr->num_desc; i++, txbuf++) {
584 if (txbuf->m_head != NULL) {
585 bus_dmamap_sync(txr->txtag, txbuf->map,
587 bus_dmamap_unload(txr->txtag, txbuf->map);
588 m_freem(txbuf->m_head);
589 txbuf->m_head = NULL;
605 txbuf->map, NMB(na, slot + si));
609 txbuf->eop = NULL;