1
0
Fork 0

NR_CPUS: Replace NR_CPUS in arch/x86/kernel/genapic_flat_64.c

* nr_cpu_ids should be used to determine if a percpu area is
    available for a given cpu.

Signed-off-by: Mike Travis <travis@sgi.com>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
hifive-unleashed-5.1
Mike Travis 2008-07-18 18:11:30 -07:00 committed by Ingo Molnar
parent 247bc6ca0f
commit 1bd9d6b64e
1 changed files with 1 additions and 1 deletions

View File

@ -168,7 +168,7 @@ static unsigned int physflat_cpu_mask_to_apicid(cpumask_t cpumask)
* May as well be the first.
*/
cpu = first_cpu(cpumask);
if ((unsigned)cpu < NR_CPUS)
if ((unsigned)cpu < nr_cpu_ids)
return per_cpu(x86_cpu_to_apicid, cpu);
else
return BAD_APICID;