Skip to content

Commit

Permalink
tcp: silence registration message
Browse files Browse the repository at this point in the history
This message isn't really needed it justs waits time/space.

Signed-off-by: Stephen Hemminger <stephen@networkplumber.org>
Signed-off-by: David S. Miller <davem@davemloft.net>
  • Loading branch information
stephen hemminger authored and David S. Miller committed Feb 20, 2015
1 parent 50036cc commit db2855a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion net/ipv4/tcp_cong.c
Original file line number Diff line number Diff line change
Expand Up @@ -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);

Expand Down

0 comments on commit db2855a

Please sign in to comment.