diff options
author | Yong Zhang <yong.zhang@windriver.com> | 2012-07-19 03:13:53 -0400 |
---|---|---|
committer | Ralf Baechle <ralf@linux-mips.org> | 2012-07-19 05:23:44 -0400 |
commit | b789ad63ac46b00f0862bdc23fc95556adc3cf2f (patch) | |
tree | 2d096cf5770cc78f46584266bf4fbca92f339690 /arch | |
parent | b9a09a0660aa9174e489ac531244680971950ef8 (diff) |
MIPS: smp: Warn on too early irq enable
Just to catch a potential issue.
Signed-off-by: Yong Zhang <yong.zhang0@gmail.com>
Cc: Sergei Shtylyov <sshtylyov@mvista.com>
Cc: David Daney <david.daney@cavium.com>
Acked-by: David Daney <david.daney@cavium.com>
Patchwork: https://patchwork.linux-mips.org/patch/3852/
Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
Diffstat (limited to 'arch')
-rw-r--r-- | arch/mips/kernel/smp.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/arch/mips/kernel/smp.c b/arch/mips/kernel/smp.c index eb3e2b112a0d..1268392f1d27 100644 --- a/arch/mips/kernel/smp.c +++ b/arch/mips/kernel/smp.c | |||
@@ -130,6 +130,11 @@ asmlinkage __cpuinit void start_secondary(void) | |||
130 | 130 | ||
131 | synchronise_count_slave(); | 131 | synchronise_count_slave(); |
132 | 132 | ||
133 | /* | ||
134 | * irq will be enabled in ->smp_finish(), enabling it too early | ||
135 | * is dangerous. | ||
136 | */ | ||
137 | WARN_ON_ONCE(!irqs_disabled()); | ||
133 | mp_ops->smp_finish(); | 138 | mp_ops->smp_finish(); |
134 | 139 | ||
135 | cpu_idle(); | 140 | cpu_idle(); |