Searched refs:ecoal (Results 1 – 1 of 1) sorted by relevance
2198 bdx_get_coalesce(struct net_device *netdev, struct ethtool_coalesce *ecoal) in bdx_get_coalesce() argument2209 ecoal->rx_coalesce_usecs = GET_INT_COAL(rdintcm) * INT_COAL_MULT; in bdx_get_coalesce()2210 ecoal->rx_max_coalesced_frames = in bdx_get_coalesce()2213 ecoal->tx_coalesce_usecs = GET_INT_COAL(tdintcm) * INT_COAL_MULT; in bdx_get_coalesce()2214 ecoal->tx_max_coalesced_frames = in bdx_get_coalesce()2227 bdx_set_coalesce(struct net_device *netdev, struct ethtool_coalesce *ecoal) in bdx_set_coalesce() argument2238 rx_coal = ecoal->rx_coalesce_usecs / INT_COAL_MULT; in bdx_set_coalesce()2239 tx_coal = ecoal->tx_coalesce_usecs / INT_COAL_MULT; in bdx_set_coalesce()2240 rx_max_coal = ecoal->rx_max_coalesced_frames; in bdx_set_coalesce()2241 tx_max_coal = ecoal->tx_max_coalesced_frames; in bdx_set_coalesce()