Lines Matching refs:new_tx_count
245 u32 new_rx_count, new_tx_count; in ixgbevf_set_ringparam() local
251 new_tx_count = max_t(u32, ring->tx_pending, IXGBEVF_MIN_TXD); in ixgbevf_set_ringparam()
252 new_tx_count = min_t(u32, new_tx_count, IXGBEVF_MAX_TXD); in ixgbevf_set_ringparam()
253 new_tx_count = ALIGN(new_tx_count, IXGBE_REQ_TX_DESCRIPTOR_MULTIPLE); in ixgbevf_set_ringparam()
260 if ((new_tx_count == adapter->tx_ring_count) && in ixgbevf_set_ringparam()
269 adapter->tx_ring[i]->count = new_tx_count; in ixgbevf_set_ringparam()
271 adapter->xdp_ring[i]->count = new_tx_count; in ixgbevf_set_ringparam()
274 adapter->tx_ring_count = new_tx_count; in ixgbevf_set_ringparam()
275 adapter->xdp_ring_count = new_tx_count; in ixgbevf_set_ringparam()
280 if (new_tx_count != adapter->tx_ring_count) { in ixgbevf_set_ringparam()
292 tx_ring[i].count = new_tx_count; in ixgbevf_set_ringparam()
310 tx_ring[i].count = new_tx_count; in ixgbevf_set_ringparam()
367 adapter->tx_ring_count = new_tx_count; in ixgbevf_set_ringparam()
373 adapter->xdp_ring_count = new_tx_count; in ixgbevf_set_ringparam()