From: Jon Maxwell <hidden> Date: 2015-08-11 01:32:53
We have seen a few crashes recently where a NIC is getting
reset for some reason and then the driver or another module calls
printk() which invokes netconsole. Netconsole then calls the
adapter specific poll routine via netpoll which crashes because
the adapter is resetting and its structures are being reinitialized.
So far we have seen this happen with ixgbe and vmxnet3 drivers.
The back trace from the ixgbe crash example looks like this:
#8 [] page_fault at
#9 [] ixgbe_clean_rx_irq at [ixgbe] <--- crash here
#10 [] ixgbe_poll at [ixgbe]
#11 [] netpoll_poll_dev at
#12 [] netpoll_send_skb_on_dev at
#13 [] netpoll_send_udp at
#14 [] write_msg at [netconsole]
#15 [] __call_console_drivers at
#16 [] _call_console_drivers at
#17 [] release_console_sem at
#18 [] vprintk at
#19 [] printk at
#20 [] __dev_printk at
#21 [] _dev_info at
#22 [] ixgbe_init_interrupt_scheme at [ixgbe]
#23 [] ixgbe_dcbnl_devreset at [ixgbe]
#24 [] ixgbe_dcbnl_set_all at [ixgbe]
#25 [] ixgbe_dcbnl_setdcbx at [ixgbe]
#26 [] dcb_doit at
#27 [] rtnetlink_rcv_msg at
#28 [] netlink_rcv_skb at
#29 [] rtnetlink_rcv at
#30 [] netlink_unicast at
#31 [] netlink_sendmsg at
#32 [] sock_sendmsg at
#33 [] sys_sendto at
#34 [] system_call_fastpath at
I could reproduce this using an ixgbe NIC.
I verified that the proposed fix works. It checks that carrier is
asserted before calling netpoll_send_udp(). Therefore if the adapter
is resetting netconsole does not call the netpoll routines and the
crash is avoided. When the adapter is back online and carrier is
reasserted netconsole will succeed again.
Signed-off-by: Jon Maxwell <redacted>
---
drivers/net/netconsole.c | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
From: David Miller <davem@davemloft.net> Date: 2015-08-11 04:22:58
From: Jon Maxwell <redacted>
Date: Tue, 11 Aug 2015 11:32:26 +1000
We have seen a few crashes recently where a NIC is getting
reset for some reason and then the driver or another module calls
printk() which invokes netconsole. Netconsole then calls the
adapter specific poll routine via netpoll which crashes because
the adapter is resetting and its structures are being reinitialized.
This isn't a fix.
What if the carrier check passes, and then the chip reset starts on
another cpu? You'll have the same problem.
I'm not applying this, sorry.
From: Jonathan Maxwell <hidden> Date: 2015-08-11 05:53:20
What if the carrier check passes, and then the chip reset starts on
another cpu? You'll have the same problem.
Okay, let me see if I can come up with a better way to mitigate this.
On Tue, Aug 11, 2015 at 2:22 PM, David Miller [off-list ref] wrote:
From: Jon Maxwell <redacted>
Date: Tue, 11 Aug 2015 11:32:26 +1000
quoted
We have seen a few crashes recently where a NIC is getting
reset for some reason and then the driver or another module calls
printk() which invokes netconsole. Netconsole then calls the
adapter specific poll routine via netpoll which crashes because
the adapter is resetting and its structures are being reinitialized.
This isn't a fix.
What if the carrier check passes, and then the chip reset starts on
another cpu? You'll have the same problem.
I'm not applying this, sorry.
From: David Miller <davem@davemloft.net> Date: 2015-08-11 17:25:25
From: Jonathan Maxwell <redacted>
Date: Tue, 11 Aug 2015 15:53:18 +1000
quoted
What if the carrier check passes, and then the chip reset starts on
another cpu? You'll have the same problem.
Okay, let me see if I can come up with a better way to mitigate this.
I personally think that drivers need to synchronize such things
internally. They are the only entity which knows when it's "OK"
to do whatever the netpoll method does, and they are also the only
entity which can properly synchronize such checks.
From: Jonathan Maxwell <hidden> Date: 2015-08-12 03:06:13
I personally think that drivers need to synchronize such things
internally. They are the only entity which knows when it's "OK"
to do whatever the netpoll method does, and they are also the only
entity which can properly synchronize such checks.
Thanks agreed. I am testing the following ixgbe patch on my reproducer
that checks for resetting/removing/down state flags in ixgbe_poll() and
bails if true. It does that check in other ixgbe routines as well. It's working
fine so far. We will need to do something similar for vmxnet3 as well and
possibly other drivers.