From Fedora Project Wiki

Revision as of 11:38, 6 May 2009 by Jlaska (talk | contribs) (changed to numbered list)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

The printable version is no longer supported and may have rendering errors. Please update your browser bookmarks and please use the default browser print function instead.

Description

This test case checks that the libvirt node device dettach, reattach and reset operations work correctly. These operations were added to support device assignment.


How to test

  1. Verify that you have the correct nodedev name for the device
    $> virsh nodedev-dumpxml pci_8086_10bd
    <device>
    <name>pci_8086_10bd</name>
    <parent>computer</parent>
    <capability type='pci'>
    <domain>0</domain>
    <bus>0</bus>
    <slot>25</slot>
    <function>0</function>
    <product id='0x10bd'>82566DM-2 Gigabit Network Connection</product>
    <vendor id='0x8086'>Intel Corporation</vendor>
    </capability>
    </device>
  2. Convert the address above to a hexidecimal PCI device address and check which driver is currently loaded
    $> readlink /sys/bus/pci/devices/0000\:00\:19.0/driver
    ../../../bus/pci/drivers/e1000e
  3. Detach the device
    $> virsh nodedev-dettach pci_8086_10bd
    Device pci_8086_10bd dettached
  4. Check that the device is now bound to the pci-stub driver
    $> readlink /sys/bus/pci/devices/0000\:00\:19.0/driver
    ../../../bus/pci/drivers/pci-stub
  5. Reset the device
    $> virsh nodedev-reset pci_8086_10bd
    Device pci_8086_10bd reset
  6. Re-attach the device:
    $> virsh nodedev-reattach pci_8086_10bd
    Device pci_8086_10bd re-attached
  7. Check the device is bound to the original driver again
    $> readlink /sys/bus/pci/devices/0000\:00\:19.0/driver
    ../../../bus/pci/drivers/e1000e
  8. Check that the device can still be used in the host - e.g. if it is a NIC, bring it up and try pinging a remote host

Expected Results

  1. All operations should complete successfully
  2. The device should be bound to pci-stub and then bound back to the original driver
  3. The device should operate correctly after it is re-attached