Lines Matching refs:pending_head

35 	struct rte_timer pending_head;  /**< dummy timer instance to head up list */  member
359 prev[lvl] = &priv_timer[tim_lcore].pending_head; in timer_get_prev_entries()
425 priv_timer[tim_lcore].pending_head.expire = priv_timer[tim_lcore].\ in timer_add()
426 pending_head.sl_next[0]->expire; in timer_add()
451 if (tim == priv_timer[prev_owner].pending_head.sl_next[0]) in timer_del()
452 priv_timer[prev_owner].pending_head.expire = in timer_del()
464 if (priv_timer[prev_owner].pending_head.sl_next[i] == NULL) in timer_del()
678 if (priv_timer[lcore_id].pending_head.sl_next[0] == NULL) in __rte_timer_manage()
686 if (likely(priv_timer[lcore_id].pending_head.expire > cur_time)) in __rte_timer_manage()
694 if (priv_timer[lcore_id].pending_head.sl_next[0] == NULL || in __rte_timer_manage()
695 priv_timer[lcore_id].pending_head.sl_next[0]->expire > cur_time) { in __rte_timer_manage()
701 tim = priv_timer[lcore_id].pending_head.sl_next[0]; in __rte_timer_manage()
706 if (prev[i] == &priv_timer[lcore_id].pending_head) in __rte_timer_manage()
708 priv_timer[lcore_id].pending_head.sl_next[i] = in __rte_timer_manage()
734 priv_timer[lcore_id].pending_head.expire = in __rte_timer_manage()
735 (priv_timer[lcore_id].pending_head.sl_next[0] == NULL) ? 0 : in __rte_timer_manage()
736 priv_timer[lcore_id].pending_head.sl_next[0]->expire; in __rte_timer_manage()
835 if (privp->pending_head.sl_next[0] == NULL) in rte_timer_alt_manage()
844 if (likely(privp->pending_head.expire > cur_time)) in rte_timer_alt_manage()
852 if (privp->pending_head.sl_next[0] == NULL || in rte_timer_alt_manage()
853 privp->pending_head.sl_next[0]->expire > cur_time) { in rte_timer_alt_manage()
859 tim = privp->pending_head.sl_next[0]; in rte_timer_alt_manage()
865 if (prev[j] == &privp->pending_head) in rte_timer_alt_manage()
867 privp->pending_head.sl_next[j] = in rte_timer_alt_manage()
895 privp->pending_head.expire = in rte_timer_alt_manage()
896 (privp->pending_head.sl_next[0] == NULL) ? 0 : in rte_timer_alt_manage()
897 privp->pending_head.sl_next[0]->expire; in rte_timer_alt_manage()
999 for (tim = priv_timer->pending_head.sl_next[0]; in rte_timer_stop_all()
1033 tm = priv_timer[lcore_id].pending_head.sl_next[0]; in rte_timer_next_ticks()