Searched refs:tx_tail (Results 1 - 11 of 11) sorted by relevance

/vbox/src/VBox/Devices/PC/ipxe/src/drivers/net/
H A D3c90x.c262 p->tx_tail = 0;
282 while (p->tx_tail != p->tx_cur) {
287 DBG2(" tx_tail: %d tx_cur: %d\n", p->tx_tail, p->tx_cur);
290 if(downlist_ptr == virt_to_bus(p->tx_ring + p->tx_tail))
293 netdev_tx_complete(netdev, p->tx_iobuf[p->tx_tail]);
296 DBG2(" size: %zd\n", iob_len(p->tx_iobuf[p->tx_tail]));
298 p->tx_tail = (p->tx_tail + 1) % TX_RING_SIZE;
H A Dpcnet32.h140 uint32_t tx_tail; member in struct:pcnet32_private
H A Dpcnet32.c304 priv->tx_tail = 0;
810 while ( priv->tx_tail != priv->tx_curr ) {
811 tx_curr_desc = priv->tx_base + priv->tx_tail;
823 DBG ( "priv->tx_tail = %d\n", priv->tx_tail );
828 netdev_tx_complete ( netdev, priv->tx_iobuf[priv->tx_tail]);
837 priv->tx_tail = ( priv->tx_tail + 1 ) % TX_RING_SIZE;
H A D3c90x.h299 unsigned int tx_tail; /* entry of last finished packet */ member in struct:INF_3C90X
H A Deepro100.h157 int tx_tail; member in struct:ifec_private
H A Dforcedeth.c196 priv->tx_tail = 0;
861 while ( priv->tx_tail != priv->tx_curr ) {
863 tx_curr_desc = priv->tx_ring + priv->tx_tail;
873 DBG ( "priv->tx_tail = %d\n", priv->tx_tail );
878 netdev_tx_complete ( netdev, priv->tx_iobuf[priv->tx_tail] );
887 priv->tx_tail = ( priv->tx_tail + 1 ) % TX_RING_SIZE;
H A Dintel.c583 unsigned int tx_tail; local
592 tx_tail = ( intel->tx.prod % INTEL_NUM_TX_DESC );
605 writel ( tx_tail, intel->regs + INTEL_TDT );
H A Dforcedeth.h328 int tx_tail; member in struct:forcedeth_private
H A Deepro100.c1043 priv->tx_curr = priv->tx_tail = 0;
/vbox/src/VBox/Devices/PC/ipxe/src/drivers/net/igbvf/
H A Digbvf_main.c207 DBGP ( "process_tx_packets: tx_head = %d, tx_tail = %d\n", adapter->tx_head,
208 adapter->tx_tail );
210 while ( ( i = adapter->tx_head ) != adapter->tx_tail ) {
223 DBG ( "Sent packet. tx_head: %d tx_tail: %d tx_status: %#08x\n",
224 adapter->tx_head, adapter->tx_tail, tx_status );
383 adapter->tx_tail = 0;
699 uint32_t tx_curr = adapter->tx_tail;
732 adapter->tx_tail = ( adapter->tx_tail + 1 ) % NUM_TX_DESC;
737 ew32 ( TDT(0), adapter->tx_tail );
[all...]
H A Digbvf.h293 uint32_t tx_tail; member in struct:igbvf_adapter

Completed in 97 milliseconds