From: Stephen Hemminger Date: Tue, 20 Sep 2005 20:39:47 +0000 (-0700) Subject: [PATCH] tcp: set default congestion control correctly for incoming connections X-Git-Tag: v2.6.13.3~2 X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=fd3fb3e1109b3c0ba63358a17d1ebd845ceebdb0;p=karo-tx-linux.git [PATCH] tcp: set default congestion control correctly for incoming connections Patch from Joel Sing to fix the default congestion control algorithm for incoming connections. If a new congestion control handler is added (via module), it should become the default for new connections. Instead, the incoming connections use reno. The cause is incorrect initialisation causes the tcp_init_congestion_control() function to return after the initial if test fails. Signed-off-by: Stephen Hemminger Acked-by: "David S. Miller" Signed-off-by: Chris Wright --- diff --git a/net/ipv4/tcp_minisocks.c b/net/ipv4/tcp_minisocks.c index f42a284164b7..58377e7a37c5 100644 --- a/net/ipv4/tcp_minisocks.c +++ b/net/ipv4/tcp_minisocks.c @@ -774,7 +774,7 @@ struct sock *tcp_create_openreq_child(struct sock *sk, struct request_sock *req, newtp->frto_counter = 0; newtp->frto_highmark = 0; - newtp->ca_ops = &tcp_reno; + newtp->ca_ops = &tcp_init_congestion_ops; tcp_set_ca_state(newtp, TCP_CA_Open); tcp_init_xmit_timers(newsk);