From 45c40dbb2c1fcafce17d5c901c9b317cde4b5cde Mon Sep 17 00:00:00 2001 From: Steve Shin Date: Tue, 26 Sep 2017 10:07:58 -0700 Subject: Fix: unnecesary uio binding for Mellanox NIC UIO binding is not required for Mellanox NIC and calling vlib_pci_bind_to_uio() should be skipped. Change-Id: I10ea457bc3c8d4be8117dec51d5bd940ee416a44 Signed-off-by: Steve Shin --- src/plugins/dpdk/device/init.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/plugins/dpdk/device/init.c b/src/plugins/dpdk/device/init.c index 4cd8841acbc..acf712ffced 100755 --- a/src/plugins/dpdk/device/init.c +++ b/src/plugins/dpdk/device/init.c @@ -692,7 +692,9 @@ dpdk_bind_devices_to_uio (dpdk_config_main_t * conf) ; /* Mellanox */ else if (d->vendor_id == 0x15b3 && d->device_id >= 0x1013 && d->device_id <= 0x101a) - ; + { + continue; + } else { clib_warning ("Unsupported PCI device 0x%04x:0x%04x found " -- cgit 1.2.3-korg