Lines Matching refs:aic
333 struct be_aic_obj *aic = &adapter->aic_obj[0]; in be_get_coalesce() local
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()
356 struct be_aic_obj *aic = &adapter->aic_obj[0]; in be_set_coalesce() local
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()
365 aic->et_eqd = max(aic->et_eqd, aic->min_eqd); in be_set_coalesce()
366 aic++; in be_set_coalesce()