]> git.karo-electronics.de Git - karo-tx-linux.git/commitdiff
net: filter: Use WARN_RATELIMIT
authorJoe Perches <joe@perches.com>
Sat, 21 May 2011 07:48:40 +0000 (07:48 +0000)
committerPaul Gortmaker <paul.gortmaker@windriver.com>
Thu, 17 May 2012 15:21:05 +0000 (11:21 -0400)
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 <greearb@candelatech.com>
Signed-off-by: Joe Perches <joe@perches.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>
net/core/filter.c

index 2bc5376d4037a3fe64eb0a3caa0d87bb52a0677e..85d13407620c93d6d6f9a2b57c0cac98b04f9de3 100644 (file)
@@ -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;
                }