[PATCH] TCP Compound: dwnd=0 on ssthresh

2006-07-05 Thread Angelo P. Castellani
In the TCP Compound article used as a reference for the implementation, we read: "If a retransmission timeout occurs, dwnd should be reset to zero and the delay-based component is disabled." at page 5 of ftp://ftp.research.microsoft.com/pub/tr/TR-2005-86.pdf The attached patch imple

Re: [PATCH] TCP Compound

2006-05-25 Thread Stephen Hemminger
break; - - x = x2; - } - v = x; - } + u64 win3; - x = (u32) v >> TCP_COMPOUND_ALPHA; +

[PATCH] TCP Compound

2006-05-25 Thread Angelo P. Castellani
From: Angelo P. Castellani <[EMAIL PROTECTED]> TCP Compound is a sender-side only change to TCP that uses a mixed Reno/Vegas approach to calculate the cwnd. For further details look here: ftp://ftp.research.microsoft.com/pub/tr/TR-2005-86.pdf Signed-off-by: Angelo P. Castellani &

Re: tcp compound

2006-05-10 Thread Angelo P. Castellani
On 5/9/06, Stephen Hemminger <[EMAIL PROTECTED]> wrote: Moved discussion over to netdev mailing list.. Could you export symbols in tcp_vegas (and change config dependencies) to allow code reuse rather than having to copy/paste everything from vegas? I hope I've done that properly. tcp_compou

Re: tcp compound

2006-05-09 Thread Stephen Hemminger
On Tue, 9 May 2006 19:39:43 +0200 "Angelo P. Castellani" <[EMAIL PROTECTED]> wrote: > I resend the file because I've sent an old (quite identical) copy Moved discussion over to netdev mailing list.. Could you export symbols in tcp_vegas (and change config dependencies) to allow code reuse rather