diff options
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 | } |