aboutsummaryrefslogtreecommitdiffstats
path: root/arch/mips/netlogic/common/smp.c
diff options
context:
space:
mode:
authorIngo Molnar <mingo@kernel.org>2015-02-26 06:24:50 -0500
committerIngo Molnar <mingo@kernel.org>2015-02-26 06:24:50 -0500
commite9e4e44309f866b115d08ab4a54834008c50a8a4 (patch)
treeae9f91e682a4d6592ef263f30a4a0b1a862b7987 /arch/mips/netlogic/common/smp.c
parent8a26ce4e544659256349551283414df504889a59 (diff)
parentc517d838eb7d07bbe9507871fab3931deccff539 (diff)
Merge tag 'v4.0-rc1' into perf/core, to refresh the tree
Signed-off-by: Ingo Molnar <mingo@kernel.org>
Diffstat (limited to 'arch/mips/netlogic/common/smp.c')
-rw-r--r--arch/mips/netlogic/common/smp.c13
1 files changed, 5 insertions, 8 deletions
diff --git a/arch/mips/netlogic/common/smp.c b/arch/mips/netlogic/common/smp.c
index 4fde7ac76cc9..e743bdd6e20c 100644
--- a/arch/mips/netlogic/common/smp.c
+++ b/arch/mips/netlogic/common/smp.c
@@ -162,7 +162,6 @@ void __init nlm_smp_setup(void)
162 unsigned int boot_cpu; 162 unsigned int boot_cpu;
163 int num_cpus, i, ncore, node; 163 int num_cpus, i, ncore, node;
164 volatile u32 *cpu_ready = nlm_get_boot_data(BOOT_CPU_READY); 164 volatile u32 *cpu_ready = nlm_get_boot_data(BOOT_CPU_READY);
165 char buf[64];
166 165
167 boot_cpu = hard_smp_processor_id(); 166 boot_cpu = hard_smp_processor_id();
168 cpumask_clear(&phys_cpu_present_mask); 167 cpumask_clear(&phys_cpu_present_mask);
@@ -189,10 +188,10 @@ void __init nlm_smp_setup(void)
189 } 188 }
190 } 189 }
191 190
192 cpumask_scnprintf(buf, ARRAY_SIZE(buf), &phys_cpu_present_mask); 191 pr_info("Physical CPU mask: %*pb\n",
193 pr_info("Physical CPU mask: %s\n", buf); 192 cpumask_pr_args(&phys_cpu_present_mask));
194 cpumask_scnprintf(buf, ARRAY_SIZE(buf), cpu_possible_mask); 193 pr_info("Possible CPU mask: %*pb\n",
195 pr_info("Possible CPU mask: %s\n", buf); 194 cpumask_pr_args(cpu_possible_mask));
196 195
197 /* check with the cores we have woken up */ 196 /* check with the cores we have woken up */
198 for (ncore = 0, i = 0; i < NLM_NR_NODES; i++) 197 for (ncore = 0, i = 0; i < NLM_NR_NODES; i++)
@@ -209,7 +208,6 @@ static int nlm_parse_cpumask(cpumask_t *wakeup_mask)
209{ 208{
210 uint32_t core0_thr_mask, core_thr_mask; 209 uint32_t core0_thr_mask, core_thr_mask;
211 int threadmode, i, j; 210 int threadmode, i, j;
212 char buf[64];
213 211
214 core0_thr_mask = 0; 212 core0_thr_mask = 0;
215 for (i = 0; i < NLM_THREADS_PER_CORE; i++) 213 for (i = 0; i < NLM_THREADS_PER_CORE; i++)
@@ -244,8 +242,7 @@ static int nlm_parse_cpumask(cpumask_t *wakeup_mask)
244 return threadmode; 242 return threadmode;
245 243
246unsupp: 244unsupp:
247 cpumask_scnprintf(buf, ARRAY_SIZE(buf), wakeup_mask); 245 panic("Unsupported CPU mask %*pb", cpumask_pr_args(wakeup_mask));
248 panic("Unsupported CPU mask %s", buf);
249 return 0; 246 return 0;
250} 247}
251 248