search for: ixgbe_rxdctl

Displaying 1 result from an estimated 1 matches for "ixgbe_rxdctl".

2009 Jan 27
5
[PATCH 2/2] Add VMDq support to ixgbe
...ing[i])); } static int ixgbe_up_complete(struct ixgbe_adapter *adapter) @@ -2751,7 +2823,8 @@ static int ixgbe_up_complete(struct ixgb * and HTHRESH=0 descriptors (to minimize latency on fetch), * this also removes a pesky rx_no_buffer_count increment */ rxdctl |= 0x0020; - rxdctl |= IXGBE_RXDCTL_ENABLE; + if (adapter->rx_ring[i].active) + rxdctl |= IXGBE_RXDCTL_ENABLE; IXGBE_WRITE_REG(hw, IXGBE_RXDCTL(j), rxdctl); } /* enable all receives */ @@ -2832,16 +2905,27 @@ static void ixgbe_clean_rx_ring(struct i struct ixgbe_rx_buffer *rx_buffer_info; rx_buffer_info = &rx_...