Daniel Drake wrote: > Hi, > > A gentoo user reported these messages on boot: > > eth0: resetting device... > eth0: uploading firmware... > eth0: firmware version: 1.0.4.3 > eth0: firmware upload complete > eth0: interface reset complete > spurious 8259A interrupt: IRQ7. > eth0: islpci_close () > eth0: resetting device... > eth0: uploading firmware... > eth0: firmware version: 1.0.4.3 > eth0: firmware upload complete > eth0: interface reset complete > Badness in local_bh_enable at kernel/softirq.c:140 > [] local_bh_enable+0x8f/0xa0 > [] destroy_conntrack+0xd9/0xf0 > [] __kfree_skb+0x7a/0xf0 > [] islpci_eth_transmit+0x15a/0x380 [prism54] > [] dev_queue_xmit_nit+0xd2/0x140 > [] qdisc_restart+0x15e/0x200 > [] dev_queue_xmit+0x1cf/0x270 > [] neigh_resolve_output+0xd3/0x1d0 > [] neigh_update+0x2a6/0x350 > [] arp_process+0x1c3/0x570 > [] nf_hook_slow+0x7e/0x140 > [] arp_process+0x0/0x570 > [] arp_rcv+0x102/0x180 > [] arp_process+0x0/0x570 > [] netif_receive_skb+0x148/0x1d0 > [] process_backlog+0x99/0x130 > [] net_rx_action+0x81/0x110 > [] __do_softirq+0xd6/0xf0 > [] do_softirq+0x35/0x40 > [] irq_exit+0x45/0x50 > [] do_IRQ+0x1e/0x30 > [] common_interrupt+0x1a/0x20 > [] acpi_processor_idle+0x126/0x270 > [] cpu_idle+0x70/0x80 > [] start_kernel+0x169/0x190 > [] unknown_bootoption+0x0/0x1d0 > > This isn't a reproducible problem and apparently everything worked fine > even after these messages had appeared. Just thought I should point out > that something isn't quite right somewhere. > > The Gentoo bug report is here: > > http://bugs.gentoo.org/show_bug.cgi?id=103803 > > Something similar has been reported previously: > > http://prism54.org/pipermail/prism54-users/2003-November/000083.html > http://prism54.org/pipermail/prism54-users/2003-November/000047.html > > Hope this is useful. The dev_kfree_skb in islpci_eth_transmit happens while irqs are still disabled, so either dev_kfree_skb_irq needs to be used or the skb needs to be freed after irqs have been enabled again. This patch should fix it. Signed-off-by: Patrick McHardy