Lines Matching refs:tx_tail
102 (((CP)->tx_tail <= (CP)->tx_head) ? \
103 (CP)->tx_tail + (DE_TX_RING_SIZE - 1) - (CP)->tx_head : \
104 (CP)->tx_tail - (CP)->tx_head - 1)
299 unsigned tx_tail; member
509 de->rx_tail, de->tx_head, de->tx_tail); in de_interrupt()
545 unsigned tx_tail = de->tx_tail; in de_tx() local
547 while (tx_tail != tx_head) { in de_tx()
552 status = le32_to_cpu(de->tx_ring[tx_tail].opts1); in de_tx()
556 skb = de->tx_skb[tx_tail].skb; in de_tx()
562 pci_unmap_single(de->pdev, de->tx_skb[tx_tail].mapping, in de_tx()
567 pci_unmap_single(de->pdev, de->tx_skb[tx_tail].mapping, in de_tx()
588 "tx done, slot %d\n", tx_tail); in de_tx()
594 de->tx_skb[tx_tail].skb = NULL; in de_tx()
596 tx_tail = NEXT_TX(tx_tail); in de_tx()
599 de->tx_tail = tx_tail; in de_tx()
895 de->tx_head = de->tx_tail = 0; in de_stop_hw()
1314 de->tx_head = de->tx_tail = 0; in de_init_rings()
1448 de->rx_tail, de->tx_head, de->tx_tail); in de_tx_timeout()