From Fedora Project Wiki

(Created page with '{{QA/Test_Case |description=Foo. |actions= # Do this. |results= # This should happen. }} Category:Virtualization KVM PCI Device Assignment Test Cases')
 
(Drop outdated bug reference)
 
(11 intermediate revisions by 3 users not shown)
Line 1: Line 1:
{{QA/Test_Case
{{QA/Test_Case
|description=Foo.
 
|description=
Assign a physical PCI device to a KVM guest, and verify that it works as expected.
 
|setup=
* Functioning F19+ host and F19+ VM.
* PCI device you can afford to devote entirely to a VM
* Verify your host as necessary hardware support for VFIO
** If on an Intel CPU, this command should show at least 2 matches: <code>dmesg <nowiki>|</nowiki> grep -e DMAR -e IOMMU</code>
** If on an AMD CPU, this command should show some output: <code>dmesg <nowiki>|</nowiki> grep AMD-Vi</code>
* Some host PCIe device may not work inside the guest if the guest driver requires the device to appear as PCIe: the default QEMU configuration can only emulate PCI. If you know you have a PCIe only device, you will need to [[QA:Testcase_Virtualization_Q35_Chipset| create a VM using the Q35 chipset]], which can emulate PCIe.
 
|actions=
|actions=
# Do this.
 
== Using virt-manager ==
 
# Run virt-manager, open an existing shutoff guest and go to the details page.
# Add Hardware->PCI Host Device
# Choose the device you want to assign from the list, like: <code>00:19.0 Interface eth0 (82566DM-2 Gigabit Network Connection)</code>
# Click ''Finish''
# Start the guest and check the device is functional within the guest
# Shut down the guest and check the device is functional within the host
# Select the device in virt-manager and ''Remove'' it
 
== Hoptlug from the command line ==
 
* Find the device you want to attach in the output of <code>lspci</code>, copy the address string at the start of the line, something like <code>02:00.0</code>
* Attach the device to running VM 'test-day-vm' using virt-xml:
  sudo virt-xml test-day-vm --update --add-device --host-device 02:00.0
* Verify the device is usable in the VM
* Remove the device from the running VM 'test-day-vm':
  sudo virt-xml test-day-vm --update --remove-device --host-device 02:00.0
* Verify the device is visible and functioning on the host machine
 
|results=
|results=
# This should happen.
No obvious errors occur. PCI device assignment can be quirky and does not always work with every PCI device or host PCI layout. If you get an error, ask in #fedora-test-day IRC first and we can likely provide some direction.
}}
}}
[[Category:Virtualization KVM PCI Device Assignment Test Cases]]
 
[[Category:Virtualization Test Cases]]

Latest revision as of 01:05, 14 April 2015

Description

Assign a physical PCI device to a KVM guest, and verify that it works as expected.

Setup

  • Functioning F19+ host and F19+ VM.
  • PCI device you can afford to devote entirely to a VM
  • Verify your host as necessary hardware support for VFIO
    • If on an Intel CPU, this command should show at least 2 matches: dmesg | grep -e DMAR -e IOMMU
    • If on an AMD CPU, this command should show some output: dmesg | grep AMD-Vi
  • Some host PCIe device may not work inside the guest if the guest driver requires the device to appear as PCIe: the default QEMU configuration can only emulate PCI. If you know you have a PCIe only device, you will need to create a VM using the Q35 chipset, which can emulate PCIe.

How to test

Using virt-manager

  1. Run virt-manager, open an existing shutoff guest and go to the details page.
  2. Add Hardware->PCI Host Device
  3. Choose the device you want to assign from the list, like: 00:19.0 Interface eth0 (82566DM-2 Gigabit Network Connection)
  4. Click Finish
  5. Start the guest and check the device is functional within the guest
  6. Shut down the guest and check the device is functional within the host
  7. Select the device in virt-manager and Remove it

Hoptlug from the command line

  • Find the device you want to attach in the output of lspci, copy the address string at the start of the line, something like 02:00.0
  • Attach the device to running VM 'test-day-vm' using virt-xml:
 sudo virt-xml test-day-vm --update --add-device --host-device 02:00.0
  • Verify the device is usable in the VM
  • Remove the device from the running VM 'test-day-vm':
 sudo virt-xml test-day-vm --update --remove-device --host-device 02:00.0
  • Verify the device is visible and functioning on the host machine

Expected Results

No obvious errors occur. PCI device assignment can be quirky and does not always work with every PCI device or host PCI layout. If you get an error, ask in #fedora-test-day IRC first and we can likely provide some direction.