From: Joe Perches Date: Sat, 21 May 2011 07:48:40 +0000 (+0000) Subject: net: filter: Use WARN_RATELIMIT X-Git-Tag: v2.6.33.16~6 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=5952a72b61eee5675ef9f878fda98e5719ee4f35;p=thirdparty%2Fkernel%2Fstable.git 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 Signed-off-by: Joe Perches Signed-off-by: David S. Miller Signed-off-by: Greg Kroah-Hartman --- diff --git a/net/core/filter.c b/net/core/filter.c index 08db7b9143a35..fb00d6c99983c 100644 --- a/net/core/filter.c +++ b/net/core/filter.c @@ -285,7 +285,9 @@ load_b: mem[fentry->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; }