当前位置: 技术问答>linux和unix
linux网络模块什么时候会导致内核崩溃啊
来源: 互联网 发布时间:2015-07-06
本文导语: 先配置IP ifconfig eth0 10.11.4.194 不久就内核崩溃 skput:over:0105a4d4:65533 put:65533 dev:eth0 kernel BUG at skbbuff.c 92 原函数定义如下: void skb_over_panic(struct sk_buff *skb, int sz, void *here) { printk("skput:over: %p:%d put:%...
先配置IP ifconfig eth0 10.11.4.194
不久就内核崩溃
skput:over:0105a4d4:65533 put:65533 dev:eth0
kernel BUG at skbbuff.c 92
原函数定义如下:
void skb_over_panic(struct sk_buff *skb, int sz, void *here)
{
printk("skput:over: %p:%d put:%d dev:%s",
here, skb->len, sz, skb->dev ? skb->dev->name : "");
BUG();
}
不久就内核崩溃
skput:over:0105a4d4:65533 put:65533 dev:eth0
kernel BUG at skbbuff.c 92
原函数定义如下:
void skb_over_panic(struct sk_buff *skb, int sz, void *here)
{
printk("skput:over: %p:%d put:%d dev:%s",
here, skb->len, sz, skb->dev ? skb->dev->name : "");
BUG();
}
|
换个高版本的稳定核心看看
|
Q: linux网络模块什么时候会导致内核崩溃啊
A: 任何时候,只要它愿意
A: 任何时候,只要它愿意