From: Sangtae Ha Date: Mon, 14 Mar 2011 07:52:17 +0000 (+0000) Subject: tcp_cubic: make the delay threshold of HyStart less sensitive X-Git-Tag: v2.6.39-rc1~468^2~19^2~4 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=2b4636a5f8ca547000f6aba24ec1c58f31f4a91d;p=platform%2Fkernel%2Flinux-3.10.git tcp_cubic: make the delay threshold of HyStart less sensitive Make HyStart less sensitive to abrupt delay variations due to buffer bloat. Signed-off-by: Sangtae Ha Acked-by: Stephen Hemminger Reported-by: Lucas Nussbaum Signed-off-by: David S. Miller --- diff --git a/net/ipv4/tcp_cubic.c b/net/ipv4/tcp_cubic.c index 5e0491d..7172c12 100644 --- a/net/ipv4/tcp_cubic.c +++ b/net/ipv4/tcp_cubic.c @@ -39,7 +39,7 @@ /* Number of delay samples for detecting the increase of delay */ #define HYSTART_MIN_SAMPLES 8 -#define HYSTART_DELAY_MIN (2U<<3) +#define HYSTART_DELAY_MIN (4U<<3) #define HYSTART_DELAY_MAX (16U<<3) #define HYSTART_DELAY_THRESH(x) clamp(x, HYSTART_DELAY_MIN, HYSTART_DELAY_MAX)