Lines Matching full:now
80 ktime_t now; in is_packet_valid() local
101 now = q->get_time(); in is_packet_valid()
102 if (ktime_before(txtime, now) || ktime_before(txtime, q->last)) in is_packet_valid()
194 /* Now we may need to re-arm the qdisc watchdog for the next packet. */ in etf_enqueue_timesortedlist()
201 ktime_t now) in timesortedlist_drop() argument
208 if (ktime_after(skb->tstamp, now)) in timesortedlist_drop()
213 /* The rbnode field in the skb re-uses these fields, now that in timesortedlist_drop()
237 /* The rbnode field in the skb re-uses these fields, now that in timesortedlist_remove()
257 ktime_t now, next; in etf_dequeue_timesortedlist() local
263 now = q->get_time(); in etf_dequeue_timesortedlist()
266 if (ktime_before(skb->tstamp, now)) { in etf_dequeue_timesortedlist()
267 timesortedlist_drop(sch, skb, now); in etf_dequeue_timesortedlist()
273 * txtime from deadline to (now + delta). in etf_dequeue_timesortedlist()
277 skb->tstamp = now; in etf_dequeue_timesortedlist()
283 /* Dequeue only if now is within the [txtime - delta, txtime] range. */ in etf_dequeue_timesortedlist()
284 if (ktime_after(now, next)) in etf_dequeue_timesortedlist()
290 /* Now we may need to re-arm the qdisc watchdog for the next packet. */ in etf_dequeue_timesortedlist()