log: get full path as syslog id
authorIntel <intel.com>
Mon, 3 Jun 2013 00:00:00 +0000 (00:00 +0000)
committerThomas Monjalon <thomas.monjalon@6wind.com>
Tue, 17 Sep 2013 12:08:47 +0000 (14:08 +0200)
It partially reverts commit 04210699eee.

Signed-off-by: Intel <intel.com>
lib/librte_eal/linuxapp/eal/eal.c

index c0e50f9..a51f86f 100644 (file)
@@ -782,14 +782,10 @@ rte_eal_init(int argc, char **argv)
        int i, fctret, ret;
        pthread_t thread_id;
        static rte_atomic32_t run_once = RTE_ATOMIC32_INIT(0);
-       const char *logid;
 
        if (!rte_atomic32_test_and_set(&run_once))
                return -1;
 
-       logid = strrchr(argv[0], '/');
-       logid = strdup(logid ? logid + 1: argv[0]);
-
        thread_id = pthread_self();
 
        if (rte_eal_log_early_init() < 0)
@@ -830,7 +826,7 @@ rte_eal_init(int argc, char **argv)
        if (rte_eal_tailqs_init() < 0)
                rte_panic("Cannot init tail queues for objects\n");
 
-       if (rte_eal_log_init(logid, internal_config.syslog_facility) < 0)
+       if (rte_eal_log_init(argv[0], internal_config.syslog_facility) < 0)
                rte_panic("Cannot init logs\n");
 
        if (rte_eal_alarm_init() < 0)