[patch 3/3] tcp: remove experimental variants from default list
From: Stephen Hemminger <hidden>
Date: 2007-02-12 16:04:41
The TCP Vegas implementation is buggy, and BIC is too agressive so they should not be in the default list. Westwood is okay, but not well tested. Signed-off-by: Stephen Hemminger <redacted> --- net/ipv4/Kconfig | 10 +--------- 1 file changed, 1 insertion(+), 9 deletions(-)
--- tcp.orig/net/ipv4/Kconfig 2007-02-12 07:58:28.000000000 -0800
+++ tcp/net/ipv4/Kconfig 2007-02-12 08:00:22.000000000 -0800@@ -581,21 +581,12 @@ Select the TCP congestion control that will be used by default for all connections. - config DEFAULT_BIC - bool "Bic" if TCP_CONG_BIC=y - config DEFAULT_CUBIC bool "Cubic" if TCP_CONG_CUBIC=y config DEFAULT_HTCP bool "Htcp" if TCP_CONG_HTCP=y - config DEFAULT_VEGAS - bool "Vegas" if TCP_CONG_VEGAS=y - - config DEFAULT_WESTWOOD - bool "Westwood" if TCP_CONG_WESTWOOD=y - config DEFAULT_RENO bool "Reno"
@@ -603,6 +594,7 @@ endif +# This sets the default value for those who do not choose advanced menu config TCP_CONG_CUBIC tristate depends on !TCP_CONG_ADVANCED --