diff options
author | Arjan van de Ven <arjan@linux.intel.com> | 2008-11-25 21:08:13 -0800 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2008-11-25 21:08:13 -0800 |
commit | 8f480c0e4e120911a673ed7385359bf76ae01963 (patch) | |
tree | c9eb4c5cf85dace25e2abf146abc87dcc8fb9d31 /net/core/skbuff.c | |
parent | 1d71da164d7fb40fac72c0406a4a531265916fc8 (diff) | |
download | linux-3.10-8f480c0e4e120911a673ed7385359bf76ae01963.tar.gz linux-3.10-8f480c0e4e120911a673ed7385359bf76ae01963.tar.bz2 linux-3.10-8f480c0e4e120911a673ed7385359bf76ae01963.zip |
net: make skb_truesize_bug() call WARN()
The truesize message check is important enough to make it print "BUG"
to the user console... lets also make it important enough to spit a
backtrace/module list etc so that kerneloops.org can track them.
Signed-off-by: Arjan van de Ven <arjan@linux.intel.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/core/skbuff.c')
-rw-r--r-- | net/core/skbuff.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/core/skbuff.c b/net/core/skbuff.c index d49ef8301b5..65f7757465b 100644 --- a/net/core/skbuff.c +++ b/net/core/skbuff.c @@ -149,7 +149,7 @@ void skb_under_panic(struct sk_buff *skb, int sz, void *here) void skb_truesize_bug(struct sk_buff *skb) { - printk(KERN_ERR "SKB BUG: Invalid truesize (%u) " + WARN(net_ratelimit(), KERN_ERR "SKB BUG: Invalid truesize (%u) " "len=%u, sizeof(sk_buff)=%Zd\n", skb->truesize, skb->len, sizeof(struct sk_buff)); } |