Lines Matching defs:delay
40 This started out as a simple way to delay outgoing packets to
42 of a full blown network emulator like NISTnet. It can delay
476 /* If a delay is expected, orphan the skb. (orphaning usually takes
477 * place at TX completion time, so _before_ the link transit delay)
543 s64 delay;
545 delay = tabledist(q->latency, q->jitter,
578 * from delay.
580 delay -= last->time_to_send - now;
581 delay = max_t(s64, 0, delay);
585 delay += packet_time_ns(qdisc_pkt_len(skb), q);
588 cb->time_to_send = now + delay;