Lines Matching refs:et
318 struct ethtool_coalesce *et, in be_get_coalesce() argument
325 et->rx_coalesce_usecs = aic->prev_eqd; in be_get_coalesce()
326 et->rx_coalesce_usecs_high = aic->max_eqd; in be_get_coalesce()
327 et->rx_coalesce_usecs_low = aic->min_eqd; in be_get_coalesce()
329 et->tx_coalesce_usecs = aic->prev_eqd; in be_get_coalesce()
330 et->tx_coalesce_usecs_high = aic->max_eqd; in be_get_coalesce()
331 et->tx_coalesce_usecs_low = aic->min_eqd; in be_get_coalesce()
333 et->use_adaptive_rx_coalesce = adapter->aic_enabled; in be_get_coalesce()
334 et->use_adaptive_tx_coalesce = adapter->aic_enabled; in be_get_coalesce()
343 struct ethtool_coalesce *et, in be_set_coalesce() argument
352 adapter->aic_enabled = et->use_adaptive_rx_coalesce; in be_set_coalesce()
355 aic->max_eqd = min(et->rx_coalesce_usecs_high, BE_MAX_EQD); in be_set_coalesce()
356 aic->min_eqd = min(et->rx_coalesce_usecs_low, aic->max_eqd); in be_set_coalesce()
357 aic->et_eqd = min(et->rx_coalesce_usecs, aic->max_eqd); in be_set_coalesce()
367 if (!et->use_adaptive_rx_coalesce && skyhawk_chip(adapter)) in be_set_coalesce()