Lines Matching defs:update_timer
9791 struct qwx_hp_update_timer *update_timer)
9796 timeout_del(&update_timer->timer);
9801 struct qwx_hp_update_timer *update_timer)
9809 update_timer->tx_num++;
9810 if (update_timer->started)
9813 update_timer->started = 1;
9814 update_timer->timer_tx_num = update_timer->tx_num;
9816 timeout_add_msec(&update_timer->timer, update_timer->interval);
9822 struct qwx_hp_update_timer *update_timer = arg;
9823 struct qwx_softc *sc = update_timer->sc;
9824 struct hal_srng *srng = &sc->hal.srng_list[update_timer->ring_id];
9836 if (update_timer->timer_tx_num != update_timer->tx_num) {
9837 update_timer->timer_tx_num = update_timer->tx_num;
9838 timeout_add_msec(&update_timer->timer, update_timer->interval);
9840 update_timer->started = 0;
10005 struct qwx_hp_update_timer *update_timer,
10011 update_timer->tx_num = 0;
10012 update_timer->timer_tx_num = 0;
10013 update_timer->sc = sc;
10014 update_timer->ring_id = ring_id;
10015 update_timer->interval = interval;
10016 update_timer->init = 1;
10017 timeout_set(&update_timer->timer, qwx_dp_shadow_timer_handler,
10018 update_timer);