diff options
| author | Andrey V. Elsukov <ae@FreeBSD.org> | 2026-09-07 04:42:09 +0000 |
|---|---|---|
| committer | Kevin Bowling <kbowling@FreeBSD.org> | 2026-09-07 04:52:40 +0000 |
| commit | d983dc521b6ecaf054bdbe938bd1bf079030f76d (patch) | |
| tree | 54b4864700dcb80714ca10e8ebd202f68a29a7d3 | |
| parent | a24eb09825cf4142531189a1e00fcea84d4f9773 (diff) | |
The shared code already recognizes IAVF_DEV_ID_VF_HV and handles it
through the regular iavf register and virtchnl paths, but the PCI probe
table omits it. Add the missing entry so the driver attaches.
PR: 239849
MFC after: 1 week
| -rw-r--r-- | sys/dev/iavf/iavf_drv_info.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/sys/dev/iavf/iavf_drv_info.h b/sys/dev/iavf/iavf_drv_info.h index 5a84a30662a8..f86d939db73d 100644 --- a/sys/dev/iavf/iavf_drv_info.h +++ b/sys/dev/iavf/iavf_drv_info.h @@ -69,6 +69,8 @@ const char iavf_driver_version[] = "3.0.26-k"; static const pci_vendor_info_t iavf_vendor_info_array[] = { PVIDV(IAVF_INTEL_VENDOR_ID, IAVF_DEV_ID_VF, "Intel(R) Ethernet Virtual Function 700 Series"), + PVIDV(IAVF_INTEL_VENDOR_ID, IAVF_DEV_ID_VF_HV, + "Intel(R) Ethernet Hyper-V Adaptive Virtual Function"), PVIDV(IAVF_INTEL_VENDOR_ID, IAVF_DEV_ID_X722_VF, "Intel(R) Ethernet Virtual Function 700 Series (X722)"), PVIDV(IAVF_INTEL_VENDOR_ID, IAVF_DEV_ID_ADAPTIVE_VF, |
