[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-Id: <1209639656.7067.2.camel@johannes.berg>
Date: Thu, 01 May 2008 13:00:56 +0200
From: Johannes Berg <johannes@...solutions.net>
To: "David S. Miller" <davem@...emloft.net>
Cc: netdev <netdev@...r.kernel.org>
Subject: [PATCH] [NET] print skb pointer in truesize bug
While debugging the mac80211 truesize problem I always wished
that I knew exactly which skb showed the problem, this makes
skb_truesize_bug() print out the pointer.
Signed-off-by: Johannes Berg <johannes@...solutions.net>
---
net/core/skbuff.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
--- everything.orig/net/core/skbuff.c 2008-05-01 12:53:09.000000000 +0200
+++ everything/net/core/skbuff.c 2008-05-01 12:53:31.000000000 +0200
@@ -152,8 +152,8 @@ void skb_under_panic(struct sk_buff *skb
void skb_truesize_bug(struct sk_buff *skb)
{
printk(KERN_ERR "SKB BUG: Invalid truesize (%u) "
- "len=%u, sizeof(sk_buff)=%Zd\n",
- skb->truesize, skb->len, sizeof(struct sk_buff));
+ "len=%u, sizeof(sk_buff)=%Zd, skb=0x%p\n",
+ skb->truesize, skb->len, sizeof(struct sk_buff), skb);
}
EXPORT_SYMBOL(skb_truesize_bug);
--
To unsubscribe from this list: send the line "unsubscribe netdev" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Powered by blists - more mailing lists