diff options
author | Stephen Hemminger <shemminger@osdl.org> | 2005-09-20 13:39:47 -0700 |
---|---|---|
committer | Chris Wright <chrisw@osdl.org> | 2005-10-03 16:27:18 -0700 |
commit | fd3fb3e1109b3c0ba63358a17d1ebd845ceebdb0 (patch) | |
tree | 78f316f78f07222f720a7248b3cd5483ac58e065 /net | |
parent | 7d9e68d3ec0b72a77c6ce6a272f83844fa4f8e3e (diff) |
[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 <shemminger@osdl.org>
Acked-by: "David S. Miller" <davem@davemloft.net>
Signed-off-by: Chris Wright <chrisw@osdl.org>
Diffstat (limited to 'net')
-rw-r--r-- | net/ipv4/tcp_minisocks.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/ipv4/tcp_minisocks.c b/net/ipv4/tcp_minisocks.c index f42a284164b..58377e7a37c 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); |