All of lore.kernel.org
 help / color / mirror / Atom feed
* BicTCP Implementation Bug
@ 2005-02-21 13:47 Yee-Ting Li
  2005-02-21 15:50 ` Stephen Hemminger
  2005-02-21 17:06 ` Gene Heskett
  0 siblings, 2 replies; 4+ messages in thread
From: Yee-Ting Li @ 2005-02-21 13:47 UTC (permalink / raw)
  To: linux-net, end2end-interest, linux-kernel
  Cc: Douglas Leith, Richard Hughes-Jones, Baruch Even, Les Cottrell,
	davem, rhee

Hi,

We have discovered a serious implementation bug in BicTCP on the Linux 
kernels. Note that because BicTCP is ON by default, this affects all 
users of kernel versions 2.6.8 and above.

For further details please see: 
http://www.hamilton.ie/net/bic-fix/Linux%20BicTCP.pdf

and the patch is:

Index: linux-2.6.10/include/net/tcp.h
===================================================================
--- linux-2.6.10.orig/include/net/tcp.h Fri Dec 24 21:34:00 2004
+++ linux-2.6.10/include/net/tcp.h      Thu Feb 17 14:13:14 2005
@@ -1280,8 +1280,7 @@
                 if (sysctl_tcp_bic_fast_convergence &&
                     tp->snd_cwnd < tp->bictcp.last_max_cwnd)
                         tp->bictcp.last_max_cwnd
-                               = (tp->snd_cwnd * 
(2*BICTCP_1_OVER_BETA-1))
-                               / (BICTCP_1_OVER_BETA/2);
+                           = tp->snd_cwnd - ( tp->snd_cwnd / 
(BICTCP_1_OVER_BETA*2) );
                 else
                         tp->bictcp.last_max_cwnd = tp->snd_cwnd;


^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2005-02-21 17:06 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2005-02-21 13:47 BicTCP Implementation Bug Yee-Ting Li
2005-02-21 15:50 ` Stephen Hemminger
2005-02-21 16:15   ` Yee-Ting Li
2005-02-21 17:06 ` Gene Heskett

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.