]> git.droids-corp.org - dpdk.git/commitdiff
app,examples: remove references to drivers config
authorThomas Monjalon <thomas.monjalon@6wind.com>
Fri, 7 Nov 2014 11:48:59 +0000 (12:48 +0100)
committerThomas Monjalon <thomas.monjalon@6wind.com>
Mon, 10 Nov 2014 09:07:56 +0000 (10:07 +0100)
These references to drivers break the layering isolation between
application and drivers.

Signed-off-by: Thomas Monjalon <thomas.monjalon@6wind.com>
Acked-by: Helin Zhang <helin.zhang@intel.com>
app/test-pmd/testpmd.c
examples/exception_path/main.c
examples/kni/main.c

index f76406f5a4ba34de1ced11700def6f8a1423ed20..12adafab44206fd0883de892a84de8d5ded3780a 100644 (file)
@@ -1870,12 +1870,7 @@ main(int argc, char** argv)
 
        nb_ports = (portid_t) rte_eth_dev_count();
        if (nb_ports == 0)
-               rte_exit(EXIT_FAILURE, "No probed ethernet devices - "
-                                                       "check that "
-                         "CONFIG_RTE_LIBRTE_IGB_PMD=y and that "
-                         "CONFIG_RTE_LIBRTE_EM_PMD=y and that "
-                         "CONFIG_RTE_LIBRTE_IXGBE_PMD=y in your "
-                         "configuration file\n");
+               rte_exit(EXIT_FAILURE, "No probed ethernet device\n");
 
        set_def_fwd_config();
        if (nb_lcores == 0)
index 3f8b1fb896641e40d3a600564540e581b6d15cc7..830cfd82869cdc29a237efa0e40c182acc0b5ab9 100644 (file)
@@ -546,9 +546,7 @@ main(int argc, char** argv)
        /* Get number of ports found in scan */
        nb_sys_ports = rte_eth_dev_count();
        if (nb_sys_ports == 0)
-               FATAL_ERROR("No supported Ethernet devices found - check that "
-                           "CONFIG_RTE_LIBRTE_IGB_PMD=y and/or "
-                           "CONFIG_RTE_LIBRTE_IXGBE_PMD=y in the config file");
+               FATAL_ERROR("No supported Ethernet device found");
        /* Find highest port set in portmask */
        for (high_port = (sizeof(ports_mask) * 8) - 1;
                        (high_port != 0) && !(ports_mask & (1 << high_port));
index 1344a878148fd4808b2d461d00230d7179944e54..47cc873fef0971b52a72b912ba0431532ac0e42c 100644 (file)
@@ -881,9 +881,7 @@ main(int argc, char** argv)
        /* Get number of ports found in scan */
        nb_sys_ports = rte_eth_dev_count();
        if (nb_sys_ports == 0)
-               rte_exit(EXIT_FAILURE, "No supported Ethernet devices found - "
-                       "check that CONFIG_RTE_LIBRTE_IGB_PMD=y and/or "
-                       "CONFIG_RTE_LIBRTE_IXGBE_PMD=y in the config file\n");
+               rte_exit(EXIT_FAILURE, "No supported Ethernet device found\n");
 
        /* Check if the configured port ID is valid */
        for (i = 0; i < RTE_MAX_ETHPORTS; i++)