]> git.proxmox.com Git - mirror_ubuntu-zesty-kernel.git/commitdiff
x86: move ipi definitions to mach_ipi.h
authorGlauber Costa <gcosta@redhat.com>
Tue, 25 Mar 2008 16:28:56 +0000 (13:28 -0300)
committerIngo Molnar <mingo@elte.hu>
Thu, 17 Apr 2008 15:41:30 +0000 (17:41 +0200)
take them out of the x86_64-only asm/mach_apic.h

Signed-off-by: Glauber Costa <gcosta@redhat.com>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
arch/x86/kernel/apic_64.c
arch/x86/kernel/crash.c
arch/x86/kernel/io_apic_64.c
arch/x86/kernel/smp.c
arch/x86/kernel/tlb_64.c
include/asm-x86/mach-default/mach_ipi.h
include/asm-x86/mach_apic.h

index 5362cfd30ecd5f06e5d11de9e6bfc776f56e6f5c..206278f1c6f4d805db9adbce9753e150ffe4efe0 100644 (file)
@@ -41,6 +41,8 @@
 #include <asm/timex.h>
 #include <asm/apic.h>
 
+#include <mach_ipi.h>
+
 int disable_apic_timer __cpuinitdata;
 static int apic_calibrate_pmtmr __initdata;
 int disable_apic;
index 9a5fa0abfcc7d3e63aa0c0a39ce786b29397b727..2251d0ae9570de24259a6c132aec2c4ef2d05f46 100644 (file)
 #include <linux/kdebug.h>
 #include <asm/smp.h>
 
-#ifdef CONFIG_X86_32
 #include <mach_ipi.h>
-#else
-#include <asm/mach_apic.h>
-#endif
 
 /* This keeps a track of which one is crashing cpu. */
 static int crashing_cpu;
index 1627c0d53e0b4f63b927184d40e56145d0012e38..7d5cdf320eba9d48a40df5bf92921479f9c20501 100644 (file)
@@ -50,6 +50,8 @@
 #include <asm/msidef.h>
 #include <asm/hypertransport.h>
 
+#include <mach_ipi.h>
+
 struct irq_cfg {
        cpumask_t domain;
        cpumask_t old_domain;
index 16c52aaaca3517c37e1e99d25c38ab5ce7756b5e..8f75893a6467e0e00c62e55b154fa674ae839e1c 100644 (file)
 #include <asm/tlbflush.h>
 #include <asm/mmu_context.h>
 #include <asm/proto.h>
-#ifdef CONFIG_X86_32
-#include <mach_apic.h>
 #include <mach_ipi.h>
-#else
-#include <asm/mach_apic.h>
-#endif
+#include <mach_apic.h>
 /*
  *     Some notes on x86 processor bugs affecting SMP operation:
  *
index 615d84817758f755dfd05d945fe9f1a0ef6671ba..1558e513757e4516fac196729a182657977a95f3 100644 (file)
 #include <asm/mtrr.h>
 #include <asm/pgalloc.h>
 #include <asm/tlbflush.h>
-#include <asm/mach_apic.h>
 #include <asm/mmu_context.h>
 #include <asm/proto.h>
 #include <asm/apicdef.h>
 #include <asm/idle.h>
+
+#include <mach_ipi.h>
 /*
  *     Smarter SMP flushing macros.
  *             c/o Linus Torvalds.
index 0dba244c86db570bc4c02f1c681b027118cd0bd7..be323364e68f6d7522194f7b2d2941df8edd6d19 100644 (file)
@@ -9,10 +9,15 @@ void __send_IPI_shortcut(unsigned int shortcut, int vector);
 
 extern int no_broadcast;
 
+#ifdef CONFIG_X86_64
+#include <asm/genapic.h>
+#define send_IPI_mask (genapic->send_IPI_mask)
+#else
 static inline void send_IPI_mask(cpumask_t mask, int vector)
 {
        send_IPI_mask_bitmask(mask, vector);
 }
+#endif
 
 static inline void __local_send_IPI_allbutself(int vector)
 {
@@ -33,6 +38,10 @@ static inline void __local_send_IPI_all(int vector)
                __send_IPI_shortcut(APIC_DEST_ALLINC, vector);
 }
 
+#ifdef CONFIG_X86_64
+#define send_IPI_allbutself (genapic->send_IPI_allbutself)
+#define send_IPI_all (genapic->send_IPI_all)
+#else
 static inline void send_IPI_allbutself(int vector)
 {
        /*
@@ -50,5 +59,6 @@ static inline void send_IPI_all(int vector)
 {
        __local_send_IPI_all(vector);
 }
+#endif
 
 #endif /* __ASM_MACH_IPI_H */
index 7b7115a0c1c99f396740e0b8dcc1066a02e63e73..1bc68c0c0cdf3082736567b02082dfc77292cafc 100644 (file)
@@ -20,9 +20,6 @@
 #define vector_allocation_domain       (genapic->vector_allocation_domain)
 #define apic_id_registered (genapic->apic_id_registered)
 #define init_apic_ldr (genapic->init_apic_ldr)
-#define send_IPI_mask (genapic->send_IPI_mask)
-#define send_IPI_allbutself (genapic->send_IPI_allbutself)
-#define send_IPI_all (genapic->send_IPI_all)
 #define cpu_mask_to_apicid (genapic->cpu_mask_to_apicid)
 #define phys_pkg_id    (genapic->phys_pkg_id)