From: stephen hemminger Date: Mon, 16 Feb 2015 14:38:13 +0000 (-0500) Subject: tcp: silence registration message X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=db2855ae2441f151a1b65e1acbe484d51a0d4dd5;p=linux-beck.git tcp: silence registration message This message isn't really needed it justs waits time/space. Signed-off-by: Stephen Hemminger Signed-off-by: David S. Miller --- diff --git a/net/ipv4/tcp_cong.c b/net/ipv4/tcp_cong.c index d694088214cd..d4c3a5e66380 100644 --- a/net/ipv4/tcp_cong.c +++ b/net/ipv4/tcp_cong.c @@ -83,7 +83,7 @@ int tcp_register_congestion_control(struct tcp_congestion_ops *ca) ret = -EEXIST; } else { list_add_tail_rcu(&ca->list, &tcp_cong_list); - pr_info("%s registered\n", ca->name); + pr_debug("%s registered\n", ca->name); } spin_unlock(&tcp_cong_list_lock);