]> git.droids-corp.org - dpdk.git/commitdiff
eal: do not panic if plugins fail to init
authorAaron Conole <aconole@redhat.com>
Wed, 22 Mar 2017 20:19:36 +0000 (16:19 -0400)
committerThomas Monjalon <thomas.monjalon@6wind.com>
Mon, 27 Mar 2017 13:57:13 +0000 (15:57 +0200)
Plugins are useful and important.  However, it seems crazy to abort
everything just because they don't initialize properly.

Signed-off-by: Aaron Conole <aconole@redhat.com>
Acked-by: Bruce Richardson <bruce.richardson@intel.com>
lib/librte_eal/bsdapp/eal/eal.c
lib/librte_eal/linuxapp/eal/eal.c

index 0c157b452035e50bf77c7d441f6c99e512f7080d..14935aa36c4542a79a3a870a3d5d37541d358704 100644 (file)
@@ -610,7 +610,7 @@ rte_eal_init(int argc, char **argv)
        eal_check_mem_on_local_socket();
 
        if (eal_plugins_init() < 0)
-               rte_panic("Cannot init plugins\n");
+               rte_eal_init_alert("Cannot init plugins\n");
 
        eal_thread_init_master(rte_config.master_lcore);
 
index ecf567a21a640b50fe138585ddfa03dbb7a4105d..b2a900525cfa122666e4c62e490cb1029a328161 100644 (file)
@@ -880,7 +880,7 @@ rte_eal_init(int argc, char **argv)
        eal_check_mem_on_local_socket();
 
        if (eal_plugins_init() < 0)
-               rte_panic("Cannot init plugins\n");
+               rte_eal_init_alert("Cannot init plugins\n");
 
        eal_thread_init_master(rte_config.master_lcore);