[Bug 208339] Early failure in ixl_attach causes kernel panic
bugzilla-noreply at freebsd.org
bugzilla-noreply at freebsd.org
Wed Mar 30 19:25:15 UTC 2016
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=208339
--- Comment #3 from Mike Hibler <hibler at gmail.com> ---
No, as I mentioned in my original report, r295946 does NOT fix the problem.
11-CURRENT crashes too.
You can simulate the failure by changing the driver:
Index: if_ixl.c
===================================================================
--- if_ixl.c (revision 297415)
+++ if_ixl.c (working copy)
@@ -550,7 +550,7 @@
/* Establish a clean starting point */
i40e_clear_hw(hw);
error = i40e_pf_reset(hw);
- if (error) {
+ if (1 || error) {
device_printf(dev,"PF reset failure %x\n", error);
error = EIO;
goto err_out;
and then rebuilding and booting the kernel on a machine with an ixl interface.
--
You are receiving this mail because:
You are on the CC list for the bug.
More information about the freebsd-amd64
mailing list