diff options
Diffstat (limited to 'arch/mips')
-rw-r--r-- | arch/mips/kernel/smp.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/arch/mips/kernel/smp.c b/arch/mips/kernel/smp.c index 6cdca1956b77..383aeb95cb49 100644 --- a/arch/mips/kernel/smp.c +++ b/arch/mips/kernel/smp.c | |||
@@ -47,8 +47,12 @@ | |||
47 | #endif /* CONFIG_MIPS_MT_SMTC */ | 47 | #endif /* CONFIG_MIPS_MT_SMTC */ |
48 | 48 | ||
49 | volatile cpumask_t cpu_callin_map; /* Bitmask of started secondaries */ | 49 | volatile cpumask_t cpu_callin_map; /* Bitmask of started secondaries */ |
50 | |||
50 | int __cpu_number_map[NR_CPUS]; /* Map physical to logical */ | 51 | int __cpu_number_map[NR_CPUS]; /* Map physical to logical */ |
52 | EXPORT_SYMBOL(__cpu_number_map); | ||
53 | |||
51 | int __cpu_logical_map[NR_CPUS]; /* Map logical to physical */ | 54 | int __cpu_logical_map[NR_CPUS]; /* Map logical to physical */ |
55 | EXPORT_SYMBOL(__cpu_logical_map); | ||
52 | 56 | ||
53 | /* Number of TCs (or siblings in Intel speak) per CPU core */ | 57 | /* Number of TCs (or siblings in Intel speak) per CPU core */ |
54 | int smp_num_siblings = 1; | 58 | int smp_num_siblings = 1; |