openstack-manuals/doc/admin-guide/source/compute-pci-passthrough.rst
Dougal Matthews 7bce82fe01 Use the correct capitalization of OpenStack
Change-Id: I0cdcf233de42b6e5f7d09bf7dd5d08bbdadf9fd3
2016-05-18 13:10:43 +01:00

4.6 KiB

Attaching physical PCI devices to guests

The PCI passthrough feature in OpenStack allows full access and direct control of a physical PCI device in guests. This mechanism is generic for any kind of PCI devices (for example: Network Interface Card (NIC), Graphics Processing Unit (GPU) or any other devices that can be attached to a PCI bus). Correct driver installation is the only requirement for the guest to properly use the devices.

PCI devices, if supported by the hardware, can provide Single Root I/O Virtualization and Sharing (SR-IOV) functionality. In this case, a physical device is virtualized and appears as multiple PCI devices. Virtual PCI devices are assigned to the same or different guests. In the case of PCI passthrough, the full physical device is assigned to only one guest and cannot be shared.

Note

For Attaching virtual SR-IOV devices to guests, refer to the Networking Guide.

To enable PCI passthrough, follow the steps below:

  1. Enable PCI passthrough (Compute)
  2. Configure PCI devices in nova-compute (Compute)
  3. Configure nova-scheduler (Controller)
  4. Configure nova-api (Controller)**
  5. Configure a flavor (Controller)

Note

The PCI device with address 0000:41:00.0 is as an example. Expect to change this according to your actual environment.

Enable PCI passthrough (Compute)

Enable VT-d and IOMMU. For more information, refer to steps one and two in Create Virtual Functions.

Configure PCI devices nova-compute (Compute)

  1. Configure nova-compute to allow the PCI device to be passed through to VMs. Edit /etc/nova/nova.conf:

    [default]
    pci_passthrough_whitelist = { "address": "0000:41:00.0" }

    Alternatively specify multiple PCI devices using whitelisting:

    [default]
    pci_passthrough_whitelist = { "vendor_id": "8086", "product_id": "10fb" }

    All PCI devices matching the vendor_id and product_id are added to the pool of PCI devices available for passthrough to VMs.

    For more information about the syntax of pci_passthrough_whitelist, refer to nova.conf configuration options.

  2. Restart nova-compute with service nova-compute restart.

Configure nova-scheduler (Controller)

  1. Configure nova-scheduler as specified in Configure nova-scheduler.
  2. Restart nova-scheduler with service nova-scheduler restart.

Configure nova-api (Controller)

  1. Specify the PCI alias for the device.

    Configure a PCI alias a1 to request a PCI device with a vendor_id of 0x8086 and a product_id of 0x154d. The vendor_id and product_id correspond the PCI device with address 0000:41:00.0.

    Edit /etc/nova/nova.conf:

    [default]
    pci_alias = { "vendor_id":"8086", "product_id":"154d", "device_type":"type-PF", "name":"a1" }

    For more information about the syntax of pci_alias, refer to nova.conf configuration options.

  2. Restart nova-api with service nova-api restart.

Configure a flavor (Controller)

Configure a flavor to request two PCI devices, each with vendor_id as 0x8086 and product_id as 0x154d.

# openstack flavor set m1.large --property "pci_passthrough:alias"="a1:2"

For more information about the syntax for pci_passthrough:alias, refer to flavor.

Create instances with PCI passthrough devices

The nova-scheduler selects a destination host that has PCI devices available with the specified vendor_id and product_id that matches the pci_alias from the flavor.

# openstack server create --flavor m1.large --image cirros-0.3.4-x86_64-uec --wait test-pci