From: stephen hemminger Date: Mon, 16 Feb 2015 14:38:13 +0000 (-0500) Subject: tcp: silence registration message X-Git-Tag: v4.1-rc1~128^2~421 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=db2855ae2441f151a1b65e1acbe484d51a0d4dd5;p=platform%2Fkernel%2Flinux-exynos.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 d694088..d4c3a5e 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);