diff options
author | Russell King <rmk@dyn-67.arm.linux.org.uk> | 2009-05-17 11:20:18 -0400 |
---|---|---|
committer | Russell King <rmk+kernel@arm.linux.org.uk> | 2009-05-17 11:22:46 -0400 |
commit | 826681043d7184b4d650cab5b007b9a86b628eb5 (patch) | |
tree | 03b3914863138e88a985d1d4e2e7258ec81378d5 /arch/arm/mach-realview/include | |
parent | 0f6f49a8cd0163fdb1723ed29f01fc65177108dc (diff) |
[ARM] smp: fix cpumask usage in ARM SMP code
The ARM SMP code wasn't properly updated for the cpumask changes, which
results in smp_timer_broadcast() broadcasting ticks to non-online CPUs.
Signed-off-by: Russell King <rmk+kernel@arm.linux.org.uk>
Diffstat (limited to 'arch/arm/mach-realview/include')
-rw-r--r-- | arch/arm/mach-realview/include/mach/smp.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/arch/arm/mach-realview/include/mach/smp.h b/arch/arm/mach-realview/include/mach/smp.h index 515819efd046..e2ff53402f8c 100644 --- a/arch/arm/mach-realview/include/mach/smp.h +++ b/arch/arm/mach-realview/include/mach/smp.h | |||
@@ -15,15 +15,15 @@ | |||
15 | /* | 15 | /* |
16 | * We use IRQ1 as the IPI | 16 | * We use IRQ1 as the IPI |
17 | */ | 17 | */ |
18 | static inline void smp_cross_call(cpumask_t callmap) | 18 | static inline void smp_cross_call(const struct cpumask *mask) |
19 | { | 19 | { |
20 | gic_raise_softirq(callmap, 1); | 20 | gic_raise_softirq(mask, 1); |
21 | } | 21 | } |
22 | 22 | ||
23 | /* | 23 | /* |
24 | * Do nothing on MPcore. | 24 | * Do nothing on MPcore. |
25 | */ | 25 | */ |
26 | static inline void smp_cross_call_done(cpumask_t callmap) | 26 | static inline void smp_cross_call_done(const struct cpumask *mask) |
27 | { | 27 | { |
28 | } | 28 | } |
29 | 29 | ||