diff options
author | David S. Miller <davem@davemloft.net> | 2008-08-04 03:02:31 -0400 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2008-08-04 16:51:40 -0400 |
commit | 24445a4ac9d3fdd3f96f0ad277cb2ba274470d94 (patch) | |
tree | 463c74d156df9f27f57bd4cba03784cf17dd6efa | |
parent | 199266305311d060b6e057fa5c7de01f218bb911 (diff) |
sparc64: Directly call xcall_deliver() in smp_start_sync_tick_client.
We know the cpu is online and not the current cpu here.
Signed-off-by: David S. Miller <davem@davemloft.net>
-rw-r--r-- | arch/sparc64/kernel/smp.c | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/arch/sparc64/kernel/smp.c b/arch/sparc64/kernel/smp.c index 47b0738ea4be..8c9e75dc1e65 100644 --- a/arch/sparc64/kernel/smp.c +++ b/arch/sparc64/kernel/smp.c | |||
@@ -782,10 +782,8 @@ extern unsigned long xcall_sync_tick; | |||
782 | 782 | ||
783 | static void smp_start_sync_tick_client(int cpu) | 783 | static void smp_start_sync_tick_client(int cpu) |
784 | { | 784 | { |
785 | cpumask_t mask = cpumask_of_cpu(cpu); | 785 | xcall_deliver((u64) &xcall_sync_tick, 0, 0, |
786 | 786 | &cpumask_of_cpu(cpu)); | |
787 | smp_cross_call_masked(&xcall_sync_tick, | ||
788 | 0, 0, 0, mask); | ||
789 | } | 787 | } |
790 | 788 | ||
791 | extern unsigned long xcall_call_function; | 789 | extern unsigned long xcall_call_function; |