eal: move internal config initialization
It's better to initialize the internal config in rte_eal_init() instead of eal_log_level_parse(), since this structure is not only about logs. Signed-off-by: Olivier Matz <olivier.matz@6wind.com> Acked-by: Ferruh Yigit <ferruh.yigit@intel.com>
This commit is contained in:
parent
ea98a7afb4
commit
08853d3cbc
@ -323,7 +323,6 @@ eal_log_level_parse(int argc, char **argv)
|
||||
optind = 1;
|
||||
optreset = 1;
|
||||
|
||||
eal_reset_internal_config(&internal_config);
|
||||
rte_log_set_global_level(internal_config.log_level);
|
||||
|
||||
while ((opt = getopt_long(argc, argvopt, eal_short_options,
|
||||
@ -520,6 +519,8 @@ rte_eal_init(int argc, char **argv)
|
||||
|
||||
thread_id = pthread_self();
|
||||
|
||||
eal_reset_internal_config(&internal_config);
|
||||
|
||||
/* set log level as early as possible */
|
||||
eal_log_level_parse(argc, argv);
|
||||
|
||||
|
@ -492,7 +492,6 @@ eal_log_level_parse(int argc, char **argv)
|
||||
argvopt = argv;
|
||||
optind = 1;
|
||||
|
||||
eal_reset_internal_config(&internal_config);
|
||||
rte_log_set_global_level(internal_config.log_level);
|
||||
|
||||
while ((opt = getopt_long(argc, argvopt, eal_short_options,
|
||||
@ -777,6 +776,8 @@ rte_eal_init(int argc, char **argv)
|
||||
|
||||
thread_id = pthread_self();
|
||||
|
||||
eal_reset_internal_config(&internal_config);
|
||||
|
||||
/* set log level as early as possible */
|
||||
eal_log_level_parse(argc, argv);
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user