Home
last modified time | relevance | path

Searched refs:sched_next (Results 1 – 3 of 3) sorted by relevance

/Linux-v5.4/net/core/
Dneighbour.c1537 long sched_next = 0; in neigh_proxy_process() local
1544 long tdif = NEIGH_CB(skb)->sched_next - now; in neigh_proxy_process()
1559 } else if (!sched_next || tdif < sched_next) in neigh_proxy_process()
1560 sched_next = tdif; in neigh_proxy_process()
1563 if (sched_next) in neigh_proxy_process()
1564 mod_timer(&tbl->proxy_timer, jiffies + sched_next); in neigh_proxy_process()
1573 unsigned long sched_next = now + (prandom_u32() % in pneigh_enqueue() local
1581 NEIGH_CB(skb)->sched_next = sched_next; in pneigh_enqueue()
1586 if (time_before(tbl->proxy_timer.expires, sched_next)) in pneigh_enqueue()
1587 sched_next = tbl->proxy_timer.expires; in pneigh_enqueue()
[all …]
/Linux-v5.4/include/net/
Dneighbour.h539 unsigned long sched_next; member
/Linux-v5.4/net/xfrm/
Dxfrm_policy.c2830 unsigned long sched_next; in xdst_queue_output() local
2853 sched_next = jiffies + pq->timeout; in xdst_queue_output()
2856 if (time_before(pq->hold_timer.expires, sched_next)) in xdst_queue_output()
2857 sched_next = pq->hold_timer.expires; in xdst_queue_output()
2862 if (!mod_timer(&pq->hold_timer, sched_next)) in xdst_queue_output()