From: Huilong Xu Date: Tue, 31 May 2016 02:40:12 +0000 (+0800) Subject: pci: increase log level to show blacklisted devices X-Git-Tag: spdx-start~6334 X-Git-Url: http://git.droids-corp.org/?a=commitdiff_plain;h=2379ae81283e3da8aa0c8cd198463f46a81f499c;p=dpdk.git pci: increase log level to show blacklisted devices Maybe we should change log level, when add port in blacklist, for check it easy. It does not influence performance and function. Signed-off-by: Huilong Xu Acked-by: Wenzhuo Lu --- diff --git a/lib/librte_eal/common/eal_common_pci.c b/lib/librte_eal/common/eal_common_pci.c index ba5283da76..7248c38bbc 100644 --- a/lib/librte_eal/common/eal_common_pci.c +++ b/lib/librte_eal/common/eal_common_pci.c @@ -188,7 +188,7 @@ rte_eal_pci_probe_one_driver(struct rte_pci_driver *dr, struct rte_pci_device *d /* no initialization when blacklisted, return without error */ if (dev->devargs != NULL && dev->devargs->type == RTE_DEVTYPE_BLACKLISTED_PCI) { - RTE_LOG(DEBUG, EAL, " Device is blacklisted, not initializing\n"); + RTE_LOG(INFO, EAL, " Device is blacklisted, not initializing\n"); return 1; }