Lines Matching defs:delay
30 * the delay to another. Flows are distributed to queues using a
87 * @mtu_time: serialisation delay of maximum-size packet
521 * the delay between first exceeding 'target' and the first signalling event,
1957 u64 delay;
2187 /* collect delay stats */
2188 delay = ktime_to_ns(ktime_sub(now, cobalt_get_enqueue_time(skb)));
2189 b->avge_delay = cake_ewma(b->avge_delay, delay, 8);
2190 b->peak_delay = cake_ewma(b->peak_delay, delay,
2191 delay > b->peak_delay ? 2 : 8);
2192 b->base_delay = cake_ewma(b->base_delay, delay,
2193 delay < b->base_delay ? 2 : 8);
2280 } /* else unlimited, ie. zero delay */