eal: print maximum and detected lcores
Print the maximum lcore(s) as configured, and the number of lcore(s) detected on eal cpu init as debug info besides the not separate detected/not-detected lcore info. Signed-off-by: Wang Sheng-Hui <shhuiw@gmail.com> [Thomas: add BSD part] Signed-off-by: Thomas Monjalon <thomas.monjalon@6wind.com>
This commit is contained in:
parent
2ef79b212a
commit
b20539d687
@ -96,6 +96,9 @@ rte_eal_cpu_init(void)
|
||||
}
|
||||
|
||||
config->lcore_count = count;
|
||||
RTE_LOG(DEBUG, EAL, "Support maximum %u logical core(s) by configuration.\n",
|
||||
RTE_MAX_LCORE);
|
||||
RTE_LOG(DEBUG, EAL, "Detected %u lcore(s)\n", config->lcore_count);
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
@ -181,6 +181,9 @@ rte_eal_cpu_init(void)
|
||||
}
|
||||
/* Set the count of enabled logical cores of the EAL configuration */
|
||||
config->lcore_count = count;
|
||||
RTE_LOG(DEBUG, EAL, "Support maximum %u logical core(s) by configuration.\n",
|
||||
RTE_MAX_LCORE);
|
||||
RTE_LOG(DEBUG, EAL, "Detected %u lcore(s)\n", config->lcore_count);
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user