Hi,

On 12/10/2013 02:42 PM, Morten Østergaard wrote:
> Hi
>
> We are experiencing a recurrent Linux kernel panic with the e1000e
> driver on a Kontron mSP1 COM Express "mini" CPU module and other similar
> COM Express modules.
>
> Unfortunately I am currently not able to save a kernel dump on the
> machines, but please see the attached jpeg image.
><...>

 From what I can see on the image, the instruction that was executed is 
0f 0b, that is ud2. That means, BUG() has beed triggered in skb_put().

Looks like the only place it could happen is

http://lxr.free-electrons.com/source/net/core/skbuff.c?v=3.10#L1286:

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

skb_over_panic() invokes BUG() to report a critical error. That means, 
'skb->tail > skb->end' is true. I cannot say yet why. May be the 
developers of e1000e could help.

Regards,
Eugene

-- 
Eugene Shatokhin, ROSA Laboratory.
www.rosalab.com

------------------------------------------------------------------------------
Sponsored by Intel(R) XDK 
Develop, test and display web and hybrid apps with a single code base.
Download it for free now!
http://pubads.g.doubleclick.net/gampad/clk?id=111408631&iu=/4140/ostg.clktrk
_______________________________________________
E1000-devel mailing list
E1000-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/e1000-devel
To learn more about Intel&#174; Ethernet, visit 
http://communities.intel.com/community/wired

Reply via email to