From: Joe Perches Date: Sat, 21 May 2011 07:48:40 +0000 (+0000) Subject: net: filter: Use WARN_RATELIMIT X-Git-Tag: v2.6.34.12~81 X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=06007b7e2d2e96d1fa36cfd42db13eead3ae7f5d;p=karo-tx-linux.git net: filter: Use WARN_RATELIMIT commit 6c4a5cb219520c7bc937ee186ca53f03733bd09f upstream. 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 Signed-off-by: Joe Perches Signed-off-by: David S. Miller Signed-off-by: Paul Gortmaker --- diff --git a/net/core/filter.c b/net/core/filter.c index 2bc5376d4037..85d13407620c 100644 --- a/net/core/filter.c +++ b/net/core/filter.c @@ -292,7 +292,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; }