[Codel] [PATCH v5] pkt_sched: codel: Controlled Delay AQM

Eric Dumazet eric.dumazet at gmail.com
Sun May 6 01:18:01 EDT 2012


On Sat, 2012-05-05 at 16:19 -0700, dave taht wrote:

> I don't buy it. See previous mail.
> 
> count - some_x sure.

It depends if some_x is a constant or not.

TCP cwnd is divided by two after a drop.

cwnd = cwnd >> 1;

If we did cwnd = cwnd - some_x; It would no work very well.


I am now experimenting :

q->count = max(1U, q->count - (q->count >> 2));

(count = 75% of count)
 




More information about the Codel mailing list