[Bug 239849] INTEL X710, WINDOWS SERVER 2019 HYPER-V, FreeBSD Current, iavf
bugzilla-noreply at freebsd.org
bugzilla-noreply at freebsd.org
Wed Aug 14 12:37:50 UTC 2019
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=239849
Andrey V. Elsukov <ae at FreeBSD.org> changed:
What |Removed |Added
----------------------------------------------------------------------------
CC| |ae at FreeBSD.org
--- Comment #1 from Andrey V. Elsukov <ae at 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.
More information about the freebsd-bugs
mailing list