From: Jay Lubomirski Date: Tue, 12 Mar 2019 20:44:00 +0000 (-0400) Subject: Add the SRIOV variant PCI Device ID of the Cisco VIC X-Git-Tag: v19.04-rc1~228 X-Git-Url: https://gerrit.fd.io/r/gitweb?a=commitdiff_plain;h=69becfcd5eaab90c99b63ca7f3de7ccad9fffc0a;p=vpp.git Add the SRIOV variant PCI Device ID of the Cisco VIC Change-Id: I572cbba817275d85c200a4b09a63f4650075f638 Signed-off-by: Jay Lubomirski --- diff --git a/src/plugins/dpdk/device/init.c b/src/plugins/dpdk/device/init.c index 48869fcb6ff..09996412b2f 100644 --- a/src/plugins/dpdk/device/init.c +++ b/src/plugins/dpdk/device/init.c @@ -842,7 +842,8 @@ dpdk_bind_devices_to_uio (dpdk_config_main_t * conf) (d->device_id == 0x0443 || d->device_id == 0x37c9 || d->device_id == 0x19e3)) ; /* Cisco VIC */ - else if (d->vendor_id == 0x1137 && d->device_id == 0x0043) + else if (d->vendor_id == 0x1137 && + (d->device_id == 0x0043 || d->device_id == 0x0071)) ; /* Chelsio T4/T5 */ else if (d->vendor_id == 0x1425 && (d->device_id & 0xe000) == 0x4000)