From: Luca Tettamanti <[EMAIL PROTECTED]>
Date: Mon, 26 Feb 2007 23:08:41 +0100

> skb_over_panic: text:f1b8a065 len:16 put:16 head:b1a3ba00 data:b1a3ba00 
> tail:b1a
> 3ba00 end:b1a3ba90 dev:<NULL>

This panic message doesn't make any sense, it should not have
triggered.  skb_put() calls skb_over_panic() when:

        if (unlikely(skb->tail>skb->end))
                skb_over_panic(skb, len, current_text_addr());

but from the panic message it says:

tail:b1a3ba00
end:b1a3ba90

tail is certainly not greater than end.
-
To unsubscribe from this list: send the line "unsubscribe netdev" in
the body of a message to [EMAIL PROTECTED]
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Reply via email to