pci: do not log false failures for non-whitelisted devices

If probe of the whitelisted PCI device fails, reset ret to zero
to silently skip non-whitelisted PCI devices.

Fixes: 10f6c93cea38 ("eal: do not panic on PCI failures")

Signed-off-by: Andrew Rybchenko <arybchenko@solarflare.com>
This commit is contained in:
Andrew Rybchenko 2017-04-04 15:59:20 +01:00 committed by Thomas Monjalon
parent e9980a7573
commit 2ed8fd9d10

View File

@ -443,6 +443,7 @@ rte_eal_pci_probe(void)
dev->addr.devid, dev->addr.function);
rte_errno = errno;
failed++;
ret = 0;
}
}