0

I am trying to know how linux PCIE NIC SR-IOV work. I am using a Unbuntu with Intel 82599 NIC as a host. Under NIC driver directory(ixgbe) in linux Kernel, there is a file named "ixgbe_sriov.c". I know this file may drive to make some VFs which respectively show some PCIE devices to user. My questions is "if i install another ubuntu as a guest OS on my host,what kind of NIC driver does the guest OS use? Still the 82599 ixbge driver?“ Anybody know it?

Thanks

1 Answers1

1

When you pass through a SR-IOV virtual function to your guest OS, it sees the same type of NIC as on the host and uses the same driver.

You can read the Red Hat Enterprise Linux documentation on SR-IOV for complete details on how to set up SR-IOV with KVM. About 99% of this is the same regardless of Linux distribution.

Michael Hampton
  • 237,123
  • 42
  • 477
  • 940
  • Thanks a lot, Michael. But from the article you linked , it clearly point out that VF and PF in SR-IOV mod use different driver. To Intel 82599 card , for example, as a PF in host OS it use ixgbe drive while as VF in guset OS it use ixgbevf driver. – risonwung Jul 06 '20 at 01:03