Searched refs:cur_tx (Results 1 - 8 of 8) sorted by relevance
/illumos-gate/usr/src/grub/grub-0.97/netboot/ |
H A D | rtl8139.c | 169 static unsigned int cur_rx,cur_tx; variable 317 cur_tx = 0; 391 outl((unsigned long)virt_to_bus(tx_buffer), nic->ioaddr + TxAddr0 + cur_tx*4); 393 nic->ioaddr + TxStatus0 + cur_tx*4); 406 txstatus = inl(nic->ioaddr+ TxStatus0 + cur_tx*4); 409 cur_tx = (cur_tx + 1) % NUM_TX_DESC;
|
H A D | epic100.c | 80 static unsigned int cur_rx, cur_tx; /* The next free ring entry */ variable 266 cur_rx = cur_tx = 0; 309 entry = cur_tx % TX_RING_SIZE; 341 cur_tx++;
|
H A D | w89c840.c | 243 unsigned int cur_tx, dirty_tx; member in struct:winbond_private 499 entry = w840private.cur_tx % TX_RING_SIZE; 519 w840private.cur_tx++; 535 printf("winbond-840 : Transmit frame # %d size %d queued in slot %d.\n", w840private.cur_tx, s, entry); 911 w840private.tx_q_bytes = w840private.cur_rx = w840private.cur_tx = 0;
|
H A D | r8169.c | 310 unsigned long cur_tx; /* Index into the Tx descriptor buffer of next Rx pkt. */ member in struct:rtl8169_private 510 int entry = tpc->cur_tx % NUM_TX_DESC; 535 tpc->cur_tx++; 617 tpc->cur_tx = 0;
|
H A D | ns83820.c | 726 int cur_tx = 0; local 745 tx_ring[cur_tx].bufptr = virt_to_le32desc(&txb); 746 tx_ring[cur_tx].extsts = cpu_to_le32(extsts); 750 tx_ring[cur_tx].cmdsts = cpu_to_le32(cmdsts);
|
H A D | pcnet32.c | 265 unsigned int cur_rx, cur_tx; /* The next free ring entry */ member in struct:pcnet32_private 409 lp->cur_rx = lp->cur_tx = 0; 591 int entry = 0; /*lp->cur_tx & TX_RING_MOD_MASK; */ 595 ptxb = txb + (lp->cur_tx * PKT_BUF_SZ); 620 lp->cur_tx = 0; /* (lp->cur_tx + 1); */
|
H A D | via-rhine.c | 641 unsigned int cur_rx, cur_tx; /* The next free and used entries */ member in struct:rhine_private 677 tp->cur_rx = tp->cur_tx = 0; 1262 entry = tp->cur_tx % TX_RING_SIZE; 1294 tp->cur_tx++;
|
H A D | tlan.c | 225 unsigned int cur_tx, dirty_tx; member in struct:tlan_private
|
Completed in 159 milliseconds