Bug 114791
Summary: | Kernel WARNING at net/core/skbuff.c:693 skb_release_head_state+0x64/0x78() | ||
---|---|---|---|
Product: | Networking | Reporter: | henri.roosen |
Component: | Netfilter/Iptables | Assignee: | networking_netfilter-iptables (networking_netfilter-iptables) |
Status: | NEW --- | ||
Severity: | normal | ||
Priority: | P1 | ||
Hardware: | ARM | ||
OS: | Linux | ||
Kernel Version: | 4.1.19 | Subsystem: | |
Regression: | No | Bisected commit-id: |
Description
henri.roosen
2016-03-16 11:51:52 UTC
Further investigations: the can0 interface is brought down by some other process, which seems to trigger the kernel Warning. The following script easily reproduces the problem on a FreeScale i.MX6 system: #!/bin/sh while true; do ifconfig can0 up cangen can0 -g 4 & can_pid=$! sleep 1 ifconfig can0 down kill -9 $can_pid sleep 1 done |