Lines Matching refs:pending_head

29 	struct rte_timer pending_head;  /**< dummy timer instance to head up list */  member
353 prev[lvl] = &priv_timer[tim_lcore].pending_head; in timer_get_prev_entries()
419 priv_timer[tim_lcore].pending_head.expire = priv_timer[tim_lcore].\ in timer_add()
420 pending_head.sl_next[0]->expire; in timer_add()
445 if (tim == priv_timer[prev_owner].pending_head.sl_next[0]) in timer_del()
446 priv_timer[prev_owner].pending_head.expire = in timer_del()
458 if (priv_timer[prev_owner].pending_head.sl_next[i] == NULL) in timer_del()
672 if (priv_timer[lcore_id].pending_head.sl_next[0] == NULL) in __rte_timer_manage()
680 if (likely(priv_timer[lcore_id].pending_head.expire > cur_time)) in __rte_timer_manage()
688 if (priv_timer[lcore_id].pending_head.sl_next[0] == NULL || in __rte_timer_manage()
689 priv_timer[lcore_id].pending_head.sl_next[0]->expire > cur_time) { in __rte_timer_manage()
695 tim = priv_timer[lcore_id].pending_head.sl_next[0]; in __rte_timer_manage()
700 if (prev[i] == &priv_timer[lcore_id].pending_head) in __rte_timer_manage()
702 priv_timer[lcore_id].pending_head.sl_next[i] = in __rte_timer_manage()
728 priv_timer[lcore_id].pending_head.expire = in __rte_timer_manage()
729 (priv_timer[lcore_id].pending_head.sl_next[0] == NULL) ? 0 : in __rte_timer_manage()
730 priv_timer[lcore_id].pending_head.sl_next[0]->expire; in __rte_timer_manage()
829 if (privp->pending_head.sl_next[0] == NULL) in rte_timer_alt_manage()
838 if (likely(privp->pending_head.expire > cur_time)) in rte_timer_alt_manage()
846 if (privp->pending_head.sl_next[0] == NULL || in rte_timer_alt_manage()
847 privp->pending_head.sl_next[0]->expire > cur_time) { in rte_timer_alt_manage()
853 tim = privp->pending_head.sl_next[0]; in rte_timer_alt_manage()
859 if (prev[j] == &privp->pending_head) in rte_timer_alt_manage()
861 privp->pending_head.sl_next[j] = in rte_timer_alt_manage()
889 privp->pending_head.expire = in rte_timer_alt_manage()
890 (privp->pending_head.sl_next[0] == NULL) ? 0 : in rte_timer_alt_manage()
891 privp->pending_head.sl_next[0]->expire; in rte_timer_alt_manage()
993 for (tim = priv_timer->pending_head.sl_next[0]; in rte_timer_stop_all()
1027 tm = priv_timer[lcore_id].pending_head.sl_next[0]; in rte_timer_next_ticks()