使用 PCI-Pass Through 将显卡分配给 KVM 客户虚拟机

使用 PCI-Pass Through 将显卡分配给 KVM 客户虚拟机

这是在使用 KVM 的 Ubuntu 12.04LTS 上。系统有一个显卡,它对虚拟机管理程序的内核可见,如下所示:

# virsh nodedev-dumpxml pci_0000_21_00_0
<device>
  <name>pci_0000_21_00_0</name>
  <parent>pci_0000_20_02_0</parent>
  <driver>
    <name>nvidia</name>
  </driver>
  <capability type='pci'>
    <domain>0</domain>
    <bus>33</bus>
    <slot>0</slot>
    <function>0</function>
    <product id='0x0a65'>GT218 [GeForce 210]</product>
    <vendor id='0x10de'>NVIDIA Corporation</vendor>
    <capability type='virt_functions'>
    </capability>
  </capability>
</device>

还有一个 PCI 功能 #1,它是卡的音频部分,我省略了 dumpxml。

在我的域 XML 中,我有以下内容:

<hostdev mode='subsystem' type='pci' managed='yes'>
  <source>
    <address domain='0x0000' bus='0x21' slot='0x00' function='0x0'/>
  </source>
  <address type='pci' domain='0x0000' bus='0x00' slot='0x04' function='0x0' multifunction='on'/>
</hostdev>
<hostdev mode='subsystem' type='pci' managed='yes'>
  <source>
    <address domain='0x0000' bus='0x21' slot='0x00' function='0x1'/>
  </source>
  <address type='pci' domain='0x0000' bus='0x00' slot='0x04' function='0x1'/>
</hostdev>

如果没有这些主机设备标签使我的客户虚拟机启动正常(它也是 Ubuntu 12.04LTS 内核)。当我尝试使用它们启动虚拟机时,我得到:

# virsh nodedev-detach pci_0000_21_00_0
Device pci_0000_21_00_0 detached

# virsh nodedev-detach pci_0000_21_00_1
Device pci_0000_21_00_1 detached

# virsh start testv
error: Failed to start domain testv
error: Unable to read from monitor: Connection reset by peer

谁能说出发生了什么问题?

更新:由于对 KVM 还不熟悉,我没想到还有日志文件可用。它的内容如下:

Failed to assign device "hostdev0" : Device or resource busy
*** The driver 'pci-stub' is occupying your device 0000:21:00.0.
***
*** You can try the following commands to free it:
***
*** $ echo "10de 0a65" > /sys/bus/pci/drivers/pci-stub/new_id
*** $ echo "0000:21:00.0" > /sys/bus/pci/drivers/pci-stub/unbind
*** $ echo "0000:21:00.0" > /sys/bus/pci/drivers/pci-stub/bind
*** $ echo "10de 0a65" > /sys/bus/pci/drivers/pci-stub/remove_id
***
kvm: -device pci-assign,host=21:00.0,id=hostdev0,configfd=30,bus=pci.0,multifunction=on,addr=0x4: Device 'pci-assign' could not be initialized
2014-12-17 19:15:52.368+0000: shutting down

因此显然nodedev-分离命令是否使存根驱动程序处于活动状态?建议的命令是在虚拟机管理程序中还是在虚拟机中运行?

答案1

你似乎已经在主持人。如果您打算在客户机上使用此卡,并且没有使用任何其他 NVIDIA 卡,请尝试卸载此驱动程序。

答案2

如果我没记错的话,你正在尝试将主机的现有 VGA 传递到虚拟机。坦率地说,这有点棘手,有很多要求,从硬件开始。首先,你需要

  • 支持 Intel VT-d(定向 I/O)的适当 CPU
  • 支持 VT-d 和 iommu 的主板。
  • 你的 Linux 内核必须使用 intel_iommu 进行编译(Fedora 和 Ubuntu 默认支持)
  • 主机使用 grub 参数“intel_iommu=on”启动

然后 KVM 将能够使用主机的显卡通过 QEMU 暴露给 VM。这是一个很好的指南为了这。

相关内容