Lines Matching refs:shared_timer
1343 struct nes_hw_tune_timer *shared_timer = &nesadapter->tune_timer; in nes_netdev_set_coalesce() local
1348 shared_timer->threshold_low = et_coalesce->rx_max_coalesced_frames_low; in nes_netdev_set_coalesce()
1351 shared_timer->threshold_target = et_coalesce->rx_max_coalesced_frames_irq; in nes_netdev_set_coalesce()
1354 shared_timer->threshold_high = et_coalesce->rx_max_coalesced_frames_high; in nes_netdev_set_coalesce()
1357 shared_timer->timer_in_use_min = et_coalesce->rx_coalesce_usecs_low; in nes_netdev_set_coalesce()
1360 shared_timer->timer_in_use_max = et_coalesce->rx_coalesce_usecs_high; in nes_netdev_set_coalesce()
1395 struct nes_hw_tune_timer *shared_timer = &nesadapter->tune_timer; in nes_netdev_get_coalesce() local
1404 temp_et_coalesce.rx_max_coalesced_frames_low = shared_timer->threshold_low; in nes_netdev_get_coalesce()
1405 temp_et_coalesce.rx_max_coalesced_frames_irq = shared_timer->threshold_target; in nes_netdev_get_coalesce()
1406 temp_et_coalesce.rx_max_coalesced_frames_high = shared_timer->threshold_high; in nes_netdev_get_coalesce()
1407 temp_et_coalesce.rx_coalesce_usecs_low = shared_timer->timer_in_use_min; in nes_netdev_get_coalesce()
1408 temp_et_coalesce.rx_coalesce_usecs_high = shared_timer->timer_in_use_max; in nes_netdev_get_coalesce()
1410 temp_et_coalesce.rx_coalesce_usecs_irq = shared_timer->timer_in_use; in nes_netdev_get_coalesce()