Some Examples and default Values of the Product ID for Intel NIC contains
Wrong Product ID that belongs to the PF product,
it should be replaced with the product ID of the VF.
Change-Id: I87291ea0458fa1ef7df1c06e17b7f9071ffb39e0
Closes-Bug:
1387152
# (ListOpt) Comma-separated list of
# supported Vendor PCI Devices, in format vendor_id:product_id
#
-# supported_pci_vendor_devs = 15b3:1004, 8086:10c9
+# supported_pci_vendor_devs = 15b3:1004, 8086:10ca
# Example: supported_pci_vendor_devs = 15b3:1004
#
# (BoolOpt) Requires running SRIOV neutron agent for port binding
sriov_opts = [
cfg.ListOpt('supported_pci_vendor_devs',
- default=['15b3:1004', '8086:10c9'],
+ default=['15b3:1004', '8086:10ca'],
help=_("Supported PCI vendor devices, defined by "
"vendor_id:product_id according to the PCI ID "
"Repository. Default enables support for Intel "
from neutron.tests.unit.ml2 import _test_mech_agent as base
MELLANOX_CONNECTX3_PCI_INFO = '15b3:1004'
-DEFAULT_PCI_INFO = ['15b3:1004', '8086:10c9']
+DEFAULT_PCI_INFO = ['15b3:1004', '8086:10ca']
class TestFakePortContext(base.FakePortContext):