diff options
author | Joe Perches <joe@perches.com> | 2012-05-13 17:56:26 -0400 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2012-05-15 13:45:03 -0400 |
commit | e87cc4728f0e2fb663e592a1141742b1d6c63256 (patch) | |
tree | b8219696d37f0c8d0521d5853560b97fc96dc667 /net/sched/sch_api.c | |
parent | 3a3bfb61e64476ff1e4ac3122cb6dec9c79b795c (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/sched/sch_api.c')
-rw-r--r-- | net/sched/sch_api.c | 10 |
1 files changed, 4 insertions, 6 deletions
diff --git a/net/sched/sch_api.c b/net/sched/sch_api.c index d2daefcc205f..085ce53d570a 100644 --- a/net/sched/sch_api.c +++ b/net/sched/sch_api.c | |||
@@ -1691,12 +1691,10 @@ reclassify: | |||
1691 | tp = otp; | 1691 | tp = otp; |
1692 | 1692 | ||
1693 | if (verd++ >= MAX_REC_LOOP) { | 1693 | if (verd++ >= MAX_REC_LOOP) { |
1694 | if (net_ratelimit()) | 1694 | net_notice_ratelimited("%s: packet reclassify loop rule prio %u protocol %02x\n", |
1695 | pr_notice("%s: packet reclassify loop" | 1695 | tp->q->ops->id, |
1696 | " rule prio %u protocol %02x\n", | 1696 | tp->prio & 0xffff, |
1697 | tp->q->ops->id, | 1697 | ntohs(tp->protocol)); |
1698 | tp->prio & 0xffff, | ||
1699 | ntohs(tp->protocol)); | ||
1700 | return TC_ACT_SHOT; | 1698 | return TC_ACT_SHOT; |
1701 | } | 1699 | } |
1702 | skb->tc_verd = SET_TC_VERD(skb->tc_verd, verd); | 1700 | skb->tc_verd = SET_TC_VERD(skb->tc_verd, verd); |