diff options
author | Yinghai Lu <yinghai@kernel.org> | 2009-01-29 22:31:49 -0500 |
---|---|---|
committer | Ingo Molnar <mingo@elte.hu> | 2009-01-30 09:21:24 -0500 |
commit | 43f39890db2959b10891cf7bbf3f53fffc8ce3bd (patch) | |
tree | 15e3705c14bfaf10eeed3c3220f1ff298e288b8d /arch/x86/kernel/probe_32.c | |
parent | 1ff2f20de354a621ef4b56b9cfe6f9139a7e493b (diff) |
x86: seperate default_send_IPI_mask_sequence/allbutself from logical
Impact: 32-bit should use logical version
there are two version: for default_send_IPI_mask_sequence/allbutself
one in ipi.h and one in ipi.c for 32bit
it seems .h version overwrote ipi.c for a while.
restore it so 32 bit could use its old logical version.
also remove dupicated functions in .c
Signed-off-by: Yinghai Lu <yinghai@kernel.org>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
Diffstat (limited to 'arch/x86/kernel/probe_32.c')
-rw-r--r-- | arch/x86/kernel/probe_32.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/x86/kernel/probe_32.c b/arch/x86/kernel/probe_32.c index b5db26f8e069..3f12a4011822 100644 --- a/arch/x86/kernel/probe_32.c +++ b/arch/x86/kernel/probe_32.c | |||
@@ -112,8 +112,8 @@ struct genapic apic_default = { | |||
112 | .cpu_mask_to_apicid = default_cpu_mask_to_apicid, | 112 | .cpu_mask_to_apicid = default_cpu_mask_to_apicid, |
113 | .cpu_mask_to_apicid_and = default_cpu_mask_to_apicid_and, | 113 | .cpu_mask_to_apicid_and = default_cpu_mask_to_apicid_and, |
114 | 114 | ||
115 | .send_IPI_mask = default_send_IPI_mask, | 115 | .send_IPI_mask = default_send_IPI_mask_logical, |
116 | .send_IPI_mask_allbutself = default_send_IPI_mask_allbutself, | 116 | .send_IPI_mask_allbutself = default_send_IPI_mask_allbutself_logical, |
117 | .send_IPI_allbutself = default_send_IPI_allbutself, | 117 | .send_IPI_allbutself = default_send_IPI_allbutself, |
118 | .send_IPI_all = default_send_IPI_all, | 118 | .send_IPI_all = default_send_IPI_all, |
119 | .send_IPI_self = NULL, | 119 | .send_IPI_self = NULL, |