HomeSort by relevance Sort by last modified time
    Searched refs:next_to_clean (Results 1 - 3 of 3) sorted by null

  /external/syslinux/gpxe/src/drivers/net/e1000/
e1000.h 120 unsigned int next_to_clean; member in struct:e1000_tx_ring
139 unsigned int next_to_clean; member in struct:e1000_rx_ring
154 ((((R)->next_to_clean > (R)->next_to_use) ? 0 : (R)->count) + \
155 (R)->next_to_clean - (R)->next_to_use - 1)
  /external/syslinux/gpxe/src/drivers/net/
atl1e.c 357 tx_ring->next_to_clean = 0;
726 u16 next_to_clean = tx_ring->next_to_clean; local
728 while (next_to_clean != hw_next_to_clean) {
729 tx_buffer = &tx_ring->tx_buffer[next_to_clean];
737 if (++next_to_clean == tx_ring->count)
738 next_to_clean = 0;
741 tx_ring->next_to_clean = next_to_clean;
909 u16 next_to_clean = 0 local
    [all...]
atl1e.h 202 u16 next_to_clean; member in struct:atl1e_tx_ring
    [all...]

Completed in 533 milliseconds