diff options
author | Russell King <rmk+kernel@arm.linux.org.uk> | 2010-12-18 07:34:39 -0500 |
---|---|---|
committer | Russell King <rmk+kernel@arm.linux.org.uk> | 2010-12-20 10:09:14 -0500 |
commit | 58613cd1d4f8c2d5f25b6c57ad7fbed80e75a67b (patch) | |
tree | e28891865b6c3fd1dfc16b18f7af705a9689ccc3 | |
parent | 90b44199e83ec780d6def11a602d825dc68438e3 (diff) |
ARM: smp: improve CPU bringup failure diagnostics
We used to print a bland error message which gave no clue as to the
failure when we failed to bring up a secondary CPU. Resolve this by
separating the two failure cases.
If boot_secondary() fails, we print a message indicating the returned
error code from boot_secondary():
"CPU%u: failed to boot: %d\n", cpu, ret.
However, if boot_secondary() succeeded, but the CPU did not appear to
mark itself online within the timeout, indicate that it failed to come
online:
"CPU%u: failed to come online\n", cpu
Signed-off-by: Russell King <rmk+kernel@arm.linux.org.uk>
-rw-r--r-- | arch/arm/kernel/smp.c | 14 |
1 files changed, 5 insertions, 9 deletions
diff --git a/arch/arm/kernel/smp.c b/arch/arm/kernel/smp.c index 1a1c5e2b3ef9..6afaf6f73069 100644 --- a/arch/arm/kernel/smp.c +++ b/arch/arm/kernel/smp.c | |||
@@ -164,8 +164,12 @@ int __cpuinit __cpu_up(unsigned int cpu) | |||
164 | barrier(); | 164 | barrier(); |
165 | } | 165 | } |
166 | 166 | ||
167 | if (!cpu_online(cpu)) | 167 | if (!cpu_online(cpu)) { |
168 | pr_crit("CPU%u: failed to come online\n", cpu); | ||
168 | ret = -EIO; | 169 | ret = -EIO; |
170 | } | ||
171 | } else { | ||
172 | pr_err("CPU%u: failed to boot: %d\n", cpu, ret); | ||
169 | } | 173 | } |
170 | 174 | ||
171 | secondary_data.stack = NULL; | 175 | secondary_data.stack = NULL; |
@@ -181,14 +185,6 @@ int __cpuinit __cpu_up(unsigned int cpu) | |||
181 | 185 | ||
182 | pgd_free(&init_mm, pgd); | 186 | pgd_free(&init_mm, pgd); |
183 | 187 | ||
184 | if (ret) { | ||
185 | printk(KERN_CRIT "CPU%u: processor failed to boot\n", cpu); | ||
186 | |||
187 | /* | ||
188 | * FIXME: We need to clean up the new idle thread. --rmk | ||
189 | */ | ||
190 | } | ||
191 | |||
192 | return ret; | 188 | return ret; |
193 | } | 189 | } |
194 | 190 | ||