Searched refs:ecoal (Results 1 – 1 of 1) sorted by relevance
2193 bdx_get_coalesce(struct net_device *netdev, struct ethtool_coalesce *ecoal) in bdx_get_coalesce() argument2204 ecoal->rx_coalesce_usecs = GET_INT_COAL(rdintcm) * INT_COAL_MULT; in bdx_get_coalesce()2205 ecoal->rx_max_coalesced_frames = in bdx_get_coalesce()2208 ecoal->tx_coalesce_usecs = GET_INT_COAL(tdintcm) * INT_COAL_MULT; in bdx_get_coalesce()2209 ecoal->tx_max_coalesced_frames = in bdx_get_coalesce()2222 bdx_set_coalesce(struct net_device *netdev, struct ethtool_coalesce *ecoal) in bdx_set_coalesce() argument2233 rx_coal = ecoal->rx_coalesce_usecs / INT_COAL_MULT; in bdx_set_coalesce()2234 tx_coal = ecoal->tx_coalesce_usecs / INT_COAL_MULT; in bdx_set_coalesce()2235 rx_max_coal = ecoal->rx_max_coalesced_frames; in bdx_set_coalesce()2236 tx_max_coal = ecoal->tx_max_coalesced_frames; in bdx_set_coalesce()