Searched refs:ecoal (Results 1 – 1 of 1) sorted by relevance
2162 bdx_get_coalesce(struct net_device *netdev, struct ethtool_coalesce *ecoal) in bdx_get_coalesce() argument2173 ecoal->rx_coalesce_usecs = GET_INT_COAL(rdintcm) * INT_COAL_MULT; in bdx_get_coalesce()2174 ecoal->rx_max_coalesced_frames = in bdx_get_coalesce()2177 ecoal->tx_coalesce_usecs = GET_INT_COAL(tdintcm) * INT_COAL_MULT; in bdx_get_coalesce()2178 ecoal->tx_max_coalesced_frames = in bdx_get_coalesce()2191 bdx_set_coalesce(struct net_device *netdev, struct ethtool_coalesce *ecoal) in bdx_set_coalesce() argument2202 rx_coal = ecoal->rx_coalesce_usecs / INT_COAL_MULT; in bdx_set_coalesce()2203 tx_coal = ecoal->tx_coalesce_usecs / INT_COAL_MULT; in bdx_set_coalesce()2204 rx_max_coal = ecoal->rx_max_coalesced_frames; in bdx_set_coalesce()2205 tx_max_coal = ecoal->tx_max_coalesced_frames; in bdx_set_coalesce()