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/act_ipt.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/act_ipt.c')
-rw-r--r-- | net/sched/act_ipt.c | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/net/sched/act_ipt.c b/net/sched/act_ipt.c index 0beba0e5312e..60e281ad0f07 100644 --- a/net/sched/act_ipt.c +++ b/net/sched/act_ipt.c | |||
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | * net/sched/ipt.c iptables target interface | 2 | * net/sched/ipt.c iptables target interface |
3 | * | 3 | * |
4 | *TODO: Add other tables. For now we only support the ipv4 table targets | 4 | *TODO: Add other tables. For now we only support the ipv4 table targets |
5 | * | 5 | * |
@@ -235,9 +235,8 @@ static int tcf_ipt(struct sk_buff *skb, const struct tc_action *a, | |||
235 | result = TC_ACT_PIPE; | 235 | result = TC_ACT_PIPE; |
236 | break; | 236 | break; |
237 | default: | 237 | default: |
238 | if (net_ratelimit()) | 238 | net_notice_ratelimited("tc filter: Bogus netfilter code %d assume ACCEPT\n", |
239 | pr_notice("tc filter: Bogus netfilter code" | 239 | ret); |
240 | " %d assume ACCEPT\n", ret); | ||
241 | result = TC_POLICE_OK; | 240 | result = TC_POLICE_OK; |
242 | break; | 241 | break; |
243 | } | 242 | } |