eal/windows: support logging
authorPallavi Kadam <pallavi.kadam@intel.com>
Wed, 6 May 2020 01:30:32 +0000 (18:30 -0700)
committerThomas Monjalon <thomas@monjalon.net>
Thu, 7 May 2020 10:18:18 +0000 (12:18 +0200)
Initialize logging on Windows to send log output
to the console.

Signed-off-by: Pallavi Kadam <pallavi.kadam@intel.com>
Reviewed-by: Ranjit Menon <ranjit.menon@intel.com>
Reviewed-by: Tasnim Bashar <tbashar@mellanox.com>
Tested-by: Dmitry Kozlyuk <dmitry.kozliuk@gmail.com>
Tested-by: Narcisa Vasile <navasile@linux.microsoft.com>
Acked-by: Narcisa Vasile <navasile@linux.microsoft.com>
lib/librte_eal/windows/eal.c
lib/librte_eal/windows/eal_log.c [new file with mode: 0644]
lib/librte_eal/windows/meson.build

index 2cf7a04..d084606 100644 (file)
@@ -227,6 +227,8 @@ rte_eal_init(int argc, char **argv)
 {
        int i, fctret;
 
+       rte_eal_log_init(NULL, 0);
+
        eal_log_level_parse(argc, argv);
 
        /* create a map of all processors in the system */
diff --git a/lib/librte_eal/windows/eal_log.c b/lib/librte_eal/windows/eal_log.c
new file mode 100644 (file)
index 0000000..875981f
--- /dev/null
@@ -0,0 +1,16 @@
+/* SPDX-License-Identifier: BSD-3-Clause
+ * Copyright(c) 2017-2018 Intel Corporation
+ */
+
+#include "eal_private.h"
+
+/* set the log to default function, called during eal init process. */
+int
+rte_eal_log_init(__rte_unused const char *id, __rte_unused int facility)
+{
+       rte_openlog_stream(stderr);
+
+       eal_log_set_default(stderr);
+
+       return 0;
+}
index 8829407..adfc8b9 100644 (file)
@@ -7,6 +7,7 @@ sources += files(
        'eal.c',
        'eal_debug.c',
        'eal_lcore.c',
+       'eal_log.c',
        'eal_thread.c',
        'fnmatch.c',
        'getopt.c',