diff options
author | Stephen Hemminger <shemminger@osdl.org> | 2006-09-24 20:11:58 -0700 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2006-09-24 20:11:58 -0700 |
commit | 3d2573f7ebe507e372a23cdd3c8b03305d6e90aa (patch) | |
tree | 8cc174bff2e7d3b3cd6d56374af1124c1de0d15a /net/ipv4/tcp_cong.c | |
parent | 5b7c714ec27584b18279b741b6043016f8adb9de (diff) |
[TCP]: default congestion control menu
Change how default TCP congestion control is chosen. Don't just use
last installed module, instead allow selection during configuration,
and make sure and use the default regardless of load order.
Signed-off-by: Stephen Hemminger <shemminger@osdl.org>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/ipv4/tcp_cong.c')
-rw-r--r-- | net/ipv4/tcp_cong.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/ipv4/tcp_cong.c b/net/ipv4/tcp_cong.c index 7ff2e4273a7..af0aca1e6be 100644 --- a/net/ipv4/tcp_cong.c +++ b/net/ipv4/tcp_cong.c @@ -48,7 +48,7 @@ int tcp_register_congestion_control(struct tcp_congestion_ops *ca) printk(KERN_NOTICE "TCP %s already registered\n", ca->name); ret = -EEXIST; } else { - list_add_rcu(&ca->list, &tcp_cong_list); + list_add_tail_rcu(&ca->list, &tcp_cong_list); printk(KERN_INFO "TCP %s registered\n", ca->name); } spin_unlock(&tcp_cong_list_lock); |