Home
last modified time | relevance | path

Searched refs:lro_first (Results 1 – 3 of 3) sorted by relevance

/illumos-gate/usr/src/uts/common/io/ixgbe/
H A Dixgbe_rx.c495 uint32_t lro_first; in ixgbe_lro_get_first() local
496 lro_first = rx_data->lro_first; in ixgbe_lro_get_first()
497 current_rcb = rx_data->work_list[lro_first]; in ixgbe_lro_get_first()
498 while ((!current_rcb->lro_pkt) && (lro_first != rx_next)) { in ixgbe_lro_get_first()
499 lro_first = NEXT_INDEX(lro_first, 1, rx_data->ring_size); in ixgbe_lro_get_first()
500 current_rcb = rx_data->work_list[lro_first]; in ixgbe_lro_get_first()
502 rx_data->lro_first = lro_first; in ixgbe_lro_get_first()
503 return (lro_first); in ixgbe_lro_get_first()
556 uint32_t lro_first; in ixgbe_ring_rx() local
739 lro_first = ixgbe_lro_get_first(rx_data, rx_next); in ixgbe_ring_rx()
[all …]
H A Dixgbe_sw.h576 uint32_t lro_first; /* Index of first LRO rcb */ member
H A Dixgbe_main.c2453 rx_data->lro_first = 0; in ixgbe_setup_rx_ring()