Lines Matching refs:cur_tx_copy

397 	struct fealnx_desc *cur_tx_copy;  member
1270 np->cur_tx_copy = &np->tx_ring[0]; in init_ring()
1296 np->cur_tx_copy->skbuff = skb; in start_tx()
1301 np->cur_tx_copy->buffer = dma_map_single(&np->pci_dev->dev, skb->data, in start_tx()
1303 np->cur_tx_copy->control = TXIC | TXLD | TXFD | CRCEnable | PADEnable; in start_tx()
1304 np->cur_tx_copy->control |= (skb->len << PKTSShift); /* pkt size */ in start_tx()
1305 np->cur_tx_copy->control |= (skb->len << TBSShift); /* buffer size */ in start_tx()
1308 np->cur_tx_copy->control |= ETIControl | RetryTxLC; in start_tx()
1309 np->cur_tx_copy->status = TXOWN; in start_tx()
1310 np->cur_tx_copy = np->cur_tx_copy->next_desc_logical; in start_tx()
1317 np->cur_tx_copy->buffer = dma_map_single(&np->pci_dev->dev, in start_tx()
1320 np->cur_tx_copy->control = TXIC | TXFD | CRCEnable | PADEnable; in start_tx()
1321 np->cur_tx_copy->control |= (skb->len << PKTSShift); /* pkt size */ in start_tx()
1322 np->cur_tx_copy->control |= (BPT << TBSShift); /* buffer size */ in start_tx()
1325 next = np->cur_tx_copy->next_desc_logical; in start_tx()
1332 np->cur_tx_copy->control |= ETIControl | RetryTxLC; in start_tx()
1338 np->cur_tx_copy->status = TXOWN; in start_tx()
1340 np->cur_tx_copy = next->next_desc_logical; in start_tx()
1343 np->cur_tx_copy->buffer = dma_map_single(&np->pci_dev->dev, in start_tx()
1346 np->cur_tx_copy->control = TXIC | TXLD | TXFD | CRCEnable | PADEnable; in start_tx()
1347 np->cur_tx_copy->control |= (skb->len << PKTSShift); /* pkt size */ in start_tx()
1348 np->cur_tx_copy->control |= (skb->len << TBSShift); /* buffer size */ in start_tx()
1351 np->cur_tx_copy->control |= ETIControl | RetryTxLC; in start_tx()
1352 np->cur_tx_copy->status = TXOWN; in start_tx()
1353 np->cur_tx_copy = np->cur_tx_copy->next_desc_logical; in start_tx()
1378 np->cur_tx_copy = &np->tx_ring[0]; in reset_tx_descriptors()