Lines Matching refs:et
330 struct ethtool_coalesce *et) in be_get_coalesce() argument
335 et->rx_coalesce_usecs = aic->prev_eqd; in be_get_coalesce()
336 et->rx_coalesce_usecs_high = aic->max_eqd; in be_get_coalesce()
337 et->rx_coalesce_usecs_low = aic->min_eqd; in be_get_coalesce()
339 et->tx_coalesce_usecs = aic->prev_eqd; in be_get_coalesce()
340 et->tx_coalesce_usecs_high = aic->max_eqd; in be_get_coalesce()
341 et->tx_coalesce_usecs_low = aic->min_eqd; in be_get_coalesce()
343 et->use_adaptive_rx_coalesce = aic->enable; in be_get_coalesce()
344 et->use_adaptive_tx_coalesce = aic->enable; in be_get_coalesce()
353 struct ethtool_coalesce *et) in be_set_coalesce() argument
361 aic->enable = et->use_adaptive_rx_coalesce; in be_set_coalesce()
362 aic->max_eqd = min(et->rx_coalesce_usecs_high, BE_MAX_EQD); in be_set_coalesce()
363 aic->min_eqd = min(et->rx_coalesce_usecs_low, aic->max_eqd); in be_set_coalesce()
364 aic->et_eqd = min(et->rx_coalesce_usecs, aic->max_eqd); in be_set_coalesce()
374 if (!et->use_adaptive_rx_coalesce && skyhawk_chip(adapter)) in be_set_coalesce()