Searched refs:next_to_use (Results 1 - 9 of 9) sorted by relevance

/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/drivers/net/ixgb/
H A Dixgb.h134 unsigned int next_to_use; member in struct:ixgb_desc_ring
142 ((((R)->next_to_clean > (R)->next_to_use) ? 0 : (R)->count) + \
143 (R)->next_to_clean - (R)->next_to_use - 1)
H A Dixgb_main.c693 txdr->next_to_use = 0;
784 rxdr->next_to_use = 0;
955 tx_ring->next_to_use = 0;
1024 rx_ring->next_to_use = 0;
1202 i = adapter->tx_ring.next_to_use;
1226 adapter->tx_ring.next_to_use = i;
1246 i = adapter->tx_ring.next_to_use;
1264 adapter->tx_ring.next_to_use = i;
1290 i = tx_ring->next_to_use;
1375 i = tx_ring->next_to_use;
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/drivers/net/e1000/
H A De1000.h182 unsigned int next_to_use; member in struct:e1000_tx_ring
204 unsigned int next_to_use; member in struct:e1000_rx_ring
221 ((((R)->next_to_clean > (R)->next_to_use) ? 0 : (R)->count) + \
222 (R)->next_to_clean - (R)->next_to_use - 1)
H A De1000_main.c526 * next_to_use != next_to_clean */
1598 txdr->next_to_use = 0;
1844 rxdr->next_to_use = 0;
2179 tx_ring->next_to_use = 0;
2299 rx_ring->next_to_use = 0;
2917 i = tx_ring->next_to_use;
2935 tx_ring->next_to_use = i;
2954 i = tx_ring->next_to_use;
2970 tx_ring->next_to_use = i;
2992 i = tx_ring->next_to_use;
[all...]
H A De1000_ethtool.c1075 txdr->next_to_use = txdr->next_to_clean = 0;
1130 rxdr->next_to_use = rxdr->next_to_clean = 0;
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/drivers/net/atl1/
H A Datl1.h86 atomic_t next_to_use; member in struct:atl1_tpd_ring
95 atomic_t next_to_use; member in struct:atl1_rfd_ring
105 u16 next_to_use; member in struct:atl1_rrd_ring
H A Datl1_main.c221 atomic_set(&tpd_ring->next_to_use, 0);
231 /* rfd_ring->next_to_use = rfd_ring->count - 1; */
232 atomic_set(&rfd_ring->next_to_use, 0);
240 rrd_ring->next_to_use = 0;
417 next_next = rfd_next_to_use = atomic_read(&rfd_ring->next_to_use);
474 atomic_set(&rfd_ring->next_to_use, (int)rfd_next_to_use);
615 tpd_next_to_use = atomic_read(&adapter->tpd_ring.next_to_use);
617 atomic_read(&adapter->rfd_ring.next_to_use);
1072 value = ((atomic_read(&adapter->tpd_ring.next_to_use)
1076 ((atomic_read(&adapter->rfd_ring.next_to_use)
1240 u16 next_to_use = atomic_read(&tpd_ring->next_to_use); local
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/drivers/net/
H A Dpasemi_mac.c249 ring->next_to_use = 0;
534 for (i = start; i < mac->tx->next_to_use; i++) {
983 if (txring->next_to_clean - txring->next_to_use == TX_RING_SIZE) {
989 if (txring->next_to_clean - txring->next_to_use ==
1000 dp = &TX_DESC(mac, txring->next_to_use);
1001 info = &TX_DESC_INFO(mac, txring->next_to_use);
1008 txring->next_to_use++;
H A Dpasemi_mac.h34 unsigned int next_to_use; member in struct:pasemi_mac_txring

Completed in 156 milliseconds