diff options
author | Joe Perches <joe@perches.com> | 2011-05-21 07:48:40 +0000 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@suse.de> | 2011-07-13 05:29:26 +0200 |
commit | 5eabe872301b2754122ce37fc4d1adfafbc94182 (patch) | |
tree | 3143ec4f854df09807043c7ffaee65bb5d4d2742 /net/core | |
parent | 46f40799c48c1a2452d06054b861ae6e7cf191f3 (diff) |
net: filter: Use WARN_RATELIMIT
[ Upstream commit 6c4a5cb219520c7bc937ee186ca53f03733bd09f ]
A mis-configured filter can spam the logs with lots of stack traces.
Rate-limit the warnings and add printout of the bogus filter information.
Original-patch-by: Ben Greear <greearb@candelatech.com>
Signed-off-by: Joe Perches <joe@perches.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
Diffstat (limited to 'net/core')
-rw-r--r-- | net/core/filter.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/net/core/filter.c b/net/core/filter.c index 01273978fe2..d162169b88f 100644 --- a/net/core/filter.c +++ b/net/core/filter.c @@ -291,7 +291,9 @@ load_b: mem[f_k] = X; continue; default: - WARN_ON(1); + WARN_RATELIMIT(1, "Unknown code:%u jt:%u tf:%u k:%u\n", + fentry->code, fentry->jt, + fentry->jf, fentry->k); return 0; } |