Lines Matching refs:coalesce

12 	struct ethtool_coalesce		coalesce;  member
73 ret = dev->ethtool_ops->get_coalesce(dev, &data->coalesce); in coalesce_prepare_data()
127 const struct ethtool_coalesce *coal = &data->coalesce; in coalesce_fill_reply()
222 struct ethtool_coalesce coalesce = {}; in ethnl_set_coalesce() local
258 ret = ops->get_coalesce(dev, &coalesce); in ethnl_set_coalesce()
262 ethnl_update_u32(&coalesce.rx_coalesce_usecs, in ethnl_set_coalesce()
264 ethnl_update_u32(&coalesce.rx_max_coalesced_frames, in ethnl_set_coalesce()
266 ethnl_update_u32(&coalesce.rx_coalesce_usecs_irq, in ethnl_set_coalesce()
268 ethnl_update_u32(&coalesce.rx_max_coalesced_frames_irq, in ethnl_set_coalesce()
270 ethnl_update_u32(&coalesce.tx_coalesce_usecs, in ethnl_set_coalesce()
272 ethnl_update_u32(&coalesce.tx_max_coalesced_frames, in ethnl_set_coalesce()
274 ethnl_update_u32(&coalesce.tx_coalesce_usecs_irq, in ethnl_set_coalesce()
276 ethnl_update_u32(&coalesce.tx_max_coalesced_frames_irq, in ethnl_set_coalesce()
278 ethnl_update_u32(&coalesce.stats_block_coalesce_usecs, in ethnl_set_coalesce()
280 ethnl_update_bool32(&coalesce.use_adaptive_rx_coalesce, in ethnl_set_coalesce()
282 ethnl_update_bool32(&coalesce.use_adaptive_tx_coalesce, in ethnl_set_coalesce()
284 ethnl_update_u32(&coalesce.pkt_rate_low, in ethnl_set_coalesce()
286 ethnl_update_u32(&coalesce.rx_coalesce_usecs_low, in ethnl_set_coalesce()
288 ethnl_update_u32(&coalesce.rx_max_coalesced_frames_low, in ethnl_set_coalesce()
290 ethnl_update_u32(&coalesce.tx_coalesce_usecs_low, in ethnl_set_coalesce()
292 ethnl_update_u32(&coalesce.tx_max_coalesced_frames_low, in ethnl_set_coalesce()
294 ethnl_update_u32(&coalesce.pkt_rate_high, in ethnl_set_coalesce()
296 ethnl_update_u32(&coalesce.rx_coalesce_usecs_high, in ethnl_set_coalesce()
298 ethnl_update_u32(&coalesce.rx_max_coalesced_frames_high, in ethnl_set_coalesce()
300 ethnl_update_u32(&coalesce.tx_coalesce_usecs_high, in ethnl_set_coalesce()
302 ethnl_update_u32(&coalesce.tx_max_coalesced_frames_high, in ethnl_set_coalesce()
304 ethnl_update_u32(&coalesce.rate_sample_interval, in ethnl_set_coalesce()
310 ret = dev->ethtool_ops->set_coalesce(dev, &coalesce); in ethnl_set_coalesce()