我正在运行以下命令来引导 Debian live CD 将主机 PCI 设备传递给来宾作为测试和 KVM 错误;
kvm -m 512 -boot c -net none -hda /media/AA502592502565F3/debian.iso -device pci-assign,host=07:00.0
PCI region 1 at address 0xf7920000 has size 0x80, which is not a multiple of 4K. You might experience some performance hit due to that.
No IOMMU found. Unable to assign device "(null)"
kvm: -device pci-assign,host=07:00.0: Device 'pci-assign' could not be initialized
lspci | grep 07
07:00.0 Ethernet controller: 3Com Corporation 3c905C-TX/TX-M [Tornado] (rev 74)
我将一个旧的备用 NIC 插入我的主板以测试 PCI 直通。我用 Goolge 搜索了 Internet,发现与“No IOMMU found”相关的错误通常意味着 KVM 不支持 PCI 设备。
KVM 是否必须支持被“直通”的设备?我虽然重点是让设备通过并让客人担心它?最终我想传递一个 PCI 随机数生成器,这对 KVM 来说是不可能的吗?
谢谢你。
PCI 直通需要在系统 BIOS 中明确启用 CPU/主板功能。
超微
对于 AMD 处理器,您必须在系统 BIOS 中启用 IOMMU。
英特尔
对于 Intel 处理器,您必须:
intel_iommu=on
到内核启动命令行。有关详细信息,请参阅 KVM wiki。