Lines Matching refs:shared_timer
1326 struct nes_hw_tune_timer *shared_timer = &nesadapter->tune_timer; in nes_netdev_set_coalesce() local
1331 shared_timer->threshold_low = et_coalesce->rx_max_coalesced_frames_low; in nes_netdev_set_coalesce()
1334 shared_timer->threshold_target = et_coalesce->rx_max_coalesced_frames_irq; in nes_netdev_set_coalesce()
1337 shared_timer->threshold_high = et_coalesce->rx_max_coalesced_frames_high; in nes_netdev_set_coalesce()
1340 shared_timer->timer_in_use_min = et_coalesce->rx_coalesce_usecs_low; in nes_netdev_set_coalesce()
1343 shared_timer->timer_in_use_max = et_coalesce->rx_coalesce_usecs_high; in nes_netdev_set_coalesce()
1378 struct nes_hw_tune_timer *shared_timer = &nesadapter->tune_timer; in nes_netdev_get_coalesce() local
1387 temp_et_coalesce.rx_max_coalesced_frames_low = shared_timer->threshold_low; in nes_netdev_get_coalesce()
1388 temp_et_coalesce.rx_max_coalesced_frames_irq = shared_timer->threshold_target; in nes_netdev_get_coalesce()
1389 temp_et_coalesce.rx_max_coalesced_frames_high = shared_timer->threshold_high; in nes_netdev_get_coalesce()
1390 temp_et_coalesce.rx_coalesce_usecs_low = shared_timer->timer_in_use_min; in nes_netdev_get_coalesce()
1391 temp_et_coalesce.rx_coalesce_usecs_high = shared_timer->timer_in_use_max; in nes_netdev_get_coalesce()
1393 temp_et_coalesce.rx_coalesce_usecs_irq = shared_timer->timer_in_use; in nes_netdev_get_coalesce()