Lines Matching refs:cur_tx_copy
404 struct fealnx_desc *cur_tx_copy; member
1281 np->cur_tx_copy = &np->tx_ring[0]; in init_ring()
1307 np->cur_tx_copy->skbuff = skb; in start_tx()
1312 np->cur_tx_copy->buffer = pci_map_single(np->pci_dev, skb->data, in start_tx()
1314 np->cur_tx_copy->control = TXIC | TXLD | TXFD | CRCEnable | PADEnable; in start_tx()
1315 np->cur_tx_copy->control |= (skb->len << PKTSShift); /* pkt size */ in start_tx()
1316 np->cur_tx_copy->control |= (skb->len << TBSShift); /* buffer size */ in start_tx()
1319 np->cur_tx_copy->control |= ETIControl | RetryTxLC; in start_tx()
1320 np->cur_tx_copy->status = TXOWN; in start_tx()
1321 np->cur_tx_copy = np->cur_tx_copy->next_desc_logical; in start_tx()
1328 np->cur_tx_copy->buffer = pci_map_single(np->pci_dev, skb->data, in start_tx()
1330 np->cur_tx_copy->control = TXIC | TXFD | CRCEnable | PADEnable; in start_tx()
1331 np->cur_tx_copy->control |= (skb->len << PKTSShift); /* pkt size */ in start_tx()
1332 np->cur_tx_copy->control |= (BPT << TBSShift); /* buffer size */ in start_tx()
1335 next = np->cur_tx_copy->next_desc_logical; in start_tx()
1342 np->cur_tx_copy->control |= ETIControl | RetryTxLC; in start_tx()
1347 np->cur_tx_copy->status = TXOWN; in start_tx()
1349 np->cur_tx_copy = next->next_desc_logical; in start_tx()
1352 np->cur_tx_copy->buffer = pci_map_single(np->pci_dev, skb->data, in start_tx()
1354 np->cur_tx_copy->control = TXIC | TXLD | TXFD | CRCEnable | PADEnable; in start_tx()
1355 np->cur_tx_copy->control |= (skb->len << PKTSShift); /* pkt size */ in start_tx()
1356 np->cur_tx_copy->control |= (skb->len << TBSShift); /* buffer size */ in start_tx()
1359 np->cur_tx_copy->control |= ETIControl | RetryTxLC; in start_tx()
1360 np->cur_tx_copy->status = TXOWN; in start_tx()
1361 np->cur_tx_copy = np->cur_tx_copy->next_desc_logical; in start_tx()
1386 np->cur_tx_copy = &np->tx_ring[0]; in reset_tx_descriptors()