Skip to content

Commit

Permalink
MIPS: XLR, XLS: Add comment for smp setup
Browse files Browse the repository at this point in the history
It seems that BSP could be setup twice, but the nlm_cpu_ready array is only
set for ASPs in smpboot.S, not including BSP.

Signed-off-by: Hillf Danton <dhillf@gmail.com>
Cc: "Jayachandran C." <jayachandranc@netlogicmicro.com>
Cc: LKML <linux-kernel@vger.kernel.org>
Cc: linux-mips@linux-mips.org
Patchwork: https://patchwork.linux-mips.org/patch/2695/
Signed-off-by: Ralf Baechle <ralf@linux-mips.org>,
  • Loading branch information
Hillf Danton authored and Ralf Baechle committed Oct 24, 2011
1 parent 9330363 commit b278896
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions arch/mips/netlogic/xlr/smp.c
Original file line number Diff line number Diff line change
Expand Up @@ -158,6 +158,10 @@ void __init nlm_smp_setup(void)

num_cpus = 1;
for (i = 0; i < NR_CPUS; i++) {
/*
* BSP is not set in nlm_cpu_ready array, it is only for
* ASPs (goto see smpboot.S)
*/
if (nlm_cpu_ready[i]) {
cpu_set(i, phys_cpu_present_map);
__cpu_number_map[i] = num_cpus;
Expand Down

0 comments on commit b278896

Please sign in to comment.