Lines Matching refs:txdesc
1077 struct netdev_desc *txdesc = in tx_poll() local
1083 txdesc = &np->tx_ring[entry]; in tx_poll()
1088 np->last_tx = txdesc; in tx_poll()
1091 txdesc->status |= cpu_to_le32(DescIntrOnTx); in tx_poll()
1102 struct netdev_desc *txdesc; in start_tx() local
1108 txdesc = &np->tx_ring[entry]; in start_tx()
1110 txdesc->next_desc = 0; in start_tx()
1111 txdesc->status = cpu_to_le32 ((entry << 2) | DisableAlign); in start_tx()
1112 txdesc->frag[0].addr = cpu_to_le32(dma_map_single(&np->pci_dev->dev, in start_tx()
1115 txdesc->frag[0].addr)) in start_tx()
1117 txdesc->frag[0].length = cpu_to_le32 (skb->len | LastFrag); in start_tx()