eal: remove useless output of undetected lcores
Increasing maximum number of lcores gives a huge place to undetected lcores in output traces. Moreover, this output does not give any interesting information, since list of undetected lcores can be deduced from list of detected ones. So remove output related to undetected cores. Signed-off-by: Didier Pallard <didier.pallard@6wind.com> Acked-by: Thomas Monjalon <thomas.monjalon@6wind.com>
This commit is contained in:
parent
69020660c3
commit
2ef79b212a
@ -77,7 +77,6 @@ rte_eal_cpu_init(void)
|
||||
|
||||
lcore_config[lcore_id].detected = (lcore_id < ncpus);
|
||||
if (lcore_config[lcore_id].detected == 0) {
|
||||
RTE_LOG(DEBUG, EAL, "Skip lcore %u (not detected)\n", lcore_id);
|
||||
config->lcore_role[lcore_id] = ROLE_OFF;
|
||||
continue;
|
||||
}
|
||||
|
@ -158,7 +158,6 @@ rte_eal_cpu_init(void)
|
||||
for (lcore_id = 0; lcore_id < RTE_MAX_LCORE; lcore_id++) {
|
||||
lcore_config[lcore_id].detected = cpu_detected(lcore_id);
|
||||
if (lcore_config[lcore_id].detected == 0) {
|
||||
RTE_LOG(DEBUG, EAL, "Skip lcore %u (not detected)\n", lcore_id);
|
||||
config->lcore_role[lcore_id] = ROLE_OFF;
|
||||
continue;
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user