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

Andrey V. Elsukov <a...@freebsd.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |a...@freebsd.org

--- Comment #1 from Andrey V. Elsukov <a...@freebsd.org> ---
It looks like iavf_vendor_info_array[] lacks I40E_DEV_ID_VF_HV id, thus the
iavf driver doesn't hook it.
You can try add corresponding line into sys/dev/ixl/if_iavf.c and recompile
your kernel and modules.

--- if_iavf.c   (revision 350972)
+++ if_iavf.c   (working copy)
@@ -57,6 +57,7 @@
 static pci_vendor_info_t iavf_vendor_info_array[] =
 {
        PVID(I40E_INTEL_VENDOR_ID, I40E_DEV_ID_VF, "Intel(R) Ethernet Virtual
Function 700 Series"),
+       PVID(I40E_INTEL_VENDOR_ID, I40E_DEV_ID_VF_HV, "Intel(R) Ethernet
Virtual Function 700 Series"),
        PVID(I40E_INTEL_VENDOR_ID, I40E_DEV_ID_X722_VF, "Intel(R) Ethernet
Virtual Function 700 Series (X722)"),
        PVID(I40E_INTEL_VENDOR_ID, I40E_DEV_ID_ADAPTIVE_VF, "Intel(R) Ethernet
Adaptive Virtual Function"),
        /* required last entry */

-- 
You are receiving this mail because:
You are the assignee for the bug.
_______________________________________________
freebsd-bugs@freebsd.org mailing list
https://lists.freebsd.org/mailman/listinfo/freebsd-bugs
To unsubscribe, send any mail to "freebsd-bugs-unsubscr...@freebsd.org"

Reply via email to