https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=208339

--- Comment #3 from Mike Hibler <hib...@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 the assignee for the bug.
_______________________________________________
freebsd-net@freebsd.org mailing list
https://lists.freebsd.org/mailman/listinfo/freebsd-net
To unsubscribe, send any mail to "freebsd-net-unsubscr...@freebsd.org"

Reply via email to