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
break;
-
- x = x2;
- }
- v = x;
- }
+ u64 win3;
- x = (u32) v >> TCP_COMPOUND_ALPHA;
+
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 &
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
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