aboutsummaryrefslogtreecommitdiffstats
path: root/net/ipv4/tcp_output.c
diff options
context:
space:
mode:
authorJoe Perches <joe@perches.com>2012-05-13 17:56:26 -0400
committerDavid S. Miller <davem@davemloft.net>2012-05-15 13:45:03 -0400
commite87cc4728f0e2fb663e592a1141742b1d6c63256 (patch)
treeb8219696d37f0c8d0521d5853560b97fc96dc667 /net/ipv4/tcp_output.c
parent3a3bfb61e64476ff1e4ac3122cb6dec9c79b795c (diff)
net: Convert net_ratelimit uses to net_<level>_ratelimited
Standardize the net core ratelimited logging functions. Coalesce formats, align arguments. Change a printk then vprintk sequence to use printf extension %pV. Signed-off-by: Joe Perches <joe@perches.com> Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/ipv4/tcp_output.c')
-rw-r--r--net/ipv4/tcp_output.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/net/ipv4/tcp_output.c b/net/ipv4/tcp_output.c
index d94733009923..7979bfd5d0fb 100644
--- a/net/ipv4/tcp_output.c
+++ b/net/ipv4/tcp_output.c
@@ -2181,8 +2181,7 @@ int tcp_retransmit_skb(struct sock *sk, struct sk_buff *skb)
2181 2181
2182#if FASTRETRANS_DEBUG > 0 2182#if FASTRETRANS_DEBUG > 0
2183 if (TCP_SKB_CB(skb)->sacked & TCPCB_SACKED_RETRANS) { 2183 if (TCP_SKB_CB(skb)->sacked & TCPCB_SACKED_RETRANS) {
2184 if (net_ratelimit()) 2184 net_dbg_ratelimited("retrans_out leaked\n");
2185 printk(KERN_DEBUG "retrans_out leaked.\n");
2186 } 2185 }
2187#endif 2186#endif
2188 if (!tp->retrans_out) 2187 if (!tp->retrans_out)