Lines Matching refs:ecmd
3546 struct ethtool_coalesce *ecmd) in velocity_get_coalesce() argument
3550 ecmd->tx_max_coalesced_frames = vptr->options.tx_intsup; in velocity_get_coalesce()
3551 ecmd->rx_max_coalesced_frames = vptr->options.rx_intsup; in velocity_get_coalesce()
3553 ecmd->rx_coalesce_usecs = get_pending_timer_val(vptr->options.rxqueue_timer); in velocity_get_coalesce()
3554 ecmd->tx_coalesce_usecs = get_pending_timer_val(vptr->options.txqueue_timer); in velocity_get_coalesce()
3560 struct ethtool_coalesce *ecmd) in velocity_set_coalesce() argument
3567 if (ecmd->tx_coalesce_usecs > max_us) in velocity_set_coalesce()
3569 if (ecmd->rx_coalesce_usecs > max_us) in velocity_set_coalesce()
3572 if (ecmd->tx_max_coalesced_frames > 0xff) in velocity_set_coalesce()
3574 if (ecmd->rx_max_coalesced_frames > 0xff) in velocity_set_coalesce()
3577 vptr->options.rx_intsup = ecmd->rx_max_coalesced_frames; in velocity_set_coalesce()
3578 vptr->options.tx_intsup = ecmd->tx_max_coalesced_frames; in velocity_set_coalesce()
3581 ecmd->rx_coalesce_usecs); in velocity_set_coalesce()
3583 ecmd->tx_coalesce_usecs); in velocity_set_coalesce()