Lines Matching refs:ecmd
3528 struct ethtool_coalesce *ecmd) in velocity_get_coalesce() argument
3532 ecmd->tx_max_coalesced_frames = vptr->options.tx_intsup; in velocity_get_coalesce()
3533 ecmd->rx_max_coalesced_frames = vptr->options.rx_intsup; in velocity_get_coalesce()
3535 ecmd->rx_coalesce_usecs = get_pending_timer_val(vptr->options.rxqueue_timer); in velocity_get_coalesce()
3536 ecmd->tx_coalesce_usecs = get_pending_timer_val(vptr->options.txqueue_timer); in velocity_get_coalesce()
3542 struct ethtool_coalesce *ecmd) in velocity_set_coalesce() argument
3549 if (ecmd->tx_coalesce_usecs > max_us) in velocity_set_coalesce()
3551 if (ecmd->rx_coalesce_usecs > max_us) in velocity_set_coalesce()
3554 if (ecmd->tx_max_coalesced_frames > 0xff) in velocity_set_coalesce()
3556 if (ecmd->rx_max_coalesced_frames > 0xff) in velocity_set_coalesce()
3559 vptr->options.rx_intsup = ecmd->rx_max_coalesced_frames; in velocity_set_coalesce()
3560 vptr->options.tx_intsup = ecmd->tx_max_coalesced_frames; in velocity_set_coalesce()
3563 ecmd->rx_coalesce_usecs); in velocity_set_coalesce()
3565 ecmd->tx_coalesce_usecs); in velocity_set_coalesce()