]> git.droids-corp.org - dpdk.git/commitdiff
eal: increase log level of some messages
authorThomas Monjalon <thomas.monjalon@6wind.com>
Fri, 22 Apr 2016 13:03:02 +0000 (15:03 +0200)
committerThomas Monjalon <thomas.monjalon@6wind.com>
Mon, 2 May 2016 13:31:17 +0000 (15:31 +0200)
Some relevant EAL logs are raised from debug to info level in order to
show the available number of cores and the detected devices.
The driver ids and name are logged only if the device is not blacklisted.

Signed-off-by: Thomas Monjalon <thomas.monjalon@6wind.com>
lib/librte_eal/common/eal_common_lcore.c
lib/librte_eal/common/eal_common_pci.c

index a4263ba5b88a63d86937302f77811b938af1bf56..2cd413205c5a018798c18f2094540d8461c16692 100644 (file)
@@ -104,7 +104,7 @@ rte_eal_cpu_init(void)
        RTE_LOG(DEBUG, EAL,
                "Support maximum %u logical core(s) by configuration.\n",
                RTE_MAX_LCORE);
-       RTE_LOG(DEBUG, EAL, "Detected %u lcore(s)\n", config->lcore_count);
+       RTE_LOG(INFO, EAL, "Detected %u lcore(s)\n", config->lcore_count);
 
        return 0;
 }
index 40f4922904a7cf06463e07ee9ad2c448c8ef24a6..3cae4cbe24eadf5ddb857bd89fd5586d6af352a0 100644 (file)
@@ -165,13 +165,10 @@ rte_eal_pci_probe_one_driver(struct rte_pci_driver *dr, struct rte_pci_device *d
 
                struct rte_pci_addr *loc = &dev->addr;
 
-               RTE_LOG(DEBUG, EAL, "PCI device "PCI_PRI_FMT" on NUMA socket %i\n",
+               RTE_LOG(INFO, EAL, "PCI device "PCI_PRI_FMT" on NUMA socket %i\n",
                                loc->domain, loc->bus, loc->devid, loc->function,
                                dev->numa_node);
 
-               RTE_LOG(DEBUG, EAL, "  probe driver: %x:%x %s\n", dev->id.vendor_id,
-                               dev->id.device_id, dr->name);
-
                /* no initialization when blacklisted, return without error */
                if (dev->devargs != NULL &&
                        dev->devargs->type == RTE_DEVTYPE_BLACKLISTED_PCI) {
@@ -179,6 +176,9 @@ rte_eal_pci_probe_one_driver(struct rte_pci_driver *dr, struct rte_pci_device *d
                        return 1;
                }
 
+               RTE_LOG(INFO, EAL, "  probe driver: %x:%x %s\n", dev->id.vendor_id,
+                               dev->id.device_id, dr->name);
+
                if (dr->drv_flags & RTE_PCI_DRV_NEED_MAPPING) {
                        /* map resources for devices that use igb_uio */
                        ret = rte_eal_pci_map_device(dev);