diff options
author | Ingo Molnar <mingo@elte.hu> | 2009-01-28 01:17:26 -0500 |
---|---|---|
committer | Ingo Molnar <mingo@elte.hu> | 2009-01-28 17:20:22 -0500 |
commit | 33a201fac698a93d9d1ffa77030ba2ff38d1a3d1 (patch) | |
tree | c1087d996f5d83f987e83380f27aa73c7aaa0871 /arch/x86/include/asm | |
parent | 72ce016583916fb7ffcbaa6a3e1f8f731b79a865 (diff) |
x86, apic: streamline the ->multi_timer_check() quirk
only NUMAQ uses this quirk: to prevent the timer IRQ from being added
on secondary nodes.
All other genapic templates can have a NULL ->multi_timer_check()
callback.
Also, extend the generic code to treat a NULL pointer accordingly.
Signed-off-by: Ingo Molnar <mingo@elte.hu>
Diffstat (limited to 'arch/x86/include/asm')
-rw-r--r-- | arch/x86/include/asm/bigsmp/apic.h | 5 | ||||
-rw-r--r-- | arch/x86/include/asm/es7000/apic.h | 5 | ||||
-rw-r--r-- | arch/x86/include/asm/mach-default/mach_apic.h | 5 | ||||
-rw-r--r-- | arch/x86/include/asm/mach-generic/mach_apic.h | 1 | ||||
-rw-r--r-- | arch/x86/include/asm/numaq/apic.h | 2 | ||||
-rw-r--r-- | arch/x86/include/asm/summit/apic.h | 5 |
6 files changed, 1 insertions, 22 deletions
diff --git a/arch/x86/include/asm/bigsmp/apic.h b/arch/x86/include/asm/bigsmp/apic.h index 321ea47b5dd1..df59298086c6 100644 --- a/arch/x86/include/asm/bigsmp/apic.h +++ b/arch/x86/include/asm/bigsmp/apic.h | |||
@@ -62,11 +62,6 @@ static inline void bigsmp_setup_apic_routing(void) | |||
62 | "Physflat", nr_ioapics); | 62 | "Physflat", nr_ioapics); |
63 | } | 63 | } |
64 | 64 | ||
65 | static inline int multi_timer_check(int apic, int irq) | ||
66 | { | ||
67 | return (0); | ||
68 | } | ||
69 | |||
70 | static inline int apicid_to_node(int logical_apicid) | 65 | static inline int apicid_to_node(int logical_apicid) |
71 | { | 66 | { |
72 | return apicid_2_node[hard_smp_processor_id()]; | 67 | return apicid_2_node[hard_smp_processor_id()]; |
diff --git a/arch/x86/include/asm/es7000/apic.h b/arch/x86/include/asm/es7000/apic.h index f1183000a940..632e4cd3f4fd 100644 --- a/arch/x86/include/asm/es7000/apic.h +++ b/arch/x86/include/asm/es7000/apic.h | |||
@@ -82,11 +82,6 @@ static inline void es7000_setup_apic_routing(void) | |||
82 | nr_ioapics, cpus_addr(*es7000_target_cpus())[0]); | 82 | nr_ioapics, cpus_addr(*es7000_target_cpus())[0]); |
83 | } | 83 | } |
84 | 84 | ||
85 | static inline int multi_timer_check(int apic, int irq) | ||
86 | { | ||
87 | return 0; | ||
88 | } | ||
89 | |||
90 | static inline int apicid_to_node(int logical_apicid) | 85 | static inline int apicid_to_node(int logical_apicid) |
91 | { | 86 | { |
92 | return 0; | 87 | return 0; |
diff --git a/arch/x86/include/asm/mach-default/mach_apic.h b/arch/x86/include/asm/mach-default/mach_apic.h index d44677463046..f418d470cf45 100644 --- a/arch/x86/include/asm/mach-default/mach_apic.h +++ b/arch/x86/include/asm/mach-default/mach_apic.h | |||
@@ -104,11 +104,6 @@ static inline physid_mask_t default_ioapic_phys_id_map(physid_mask_t phys_map) | |||
104 | return phys_map; | 104 | return phys_map; |
105 | } | 105 | } |
106 | 106 | ||
107 | static inline int multi_timer_check(int apic, int irq) | ||
108 | { | ||
109 | return 0; | ||
110 | } | ||
111 | |||
112 | /* Mapping from cpu number to logical apicid */ | 107 | /* Mapping from cpu number to logical apicid */ |
113 | static inline int cpu_to_logical_apicid(int cpu) | 108 | static inline int cpu_to_logical_apicid(int cpu) |
114 | { | 109 | { |
diff --git a/arch/x86/include/asm/mach-generic/mach_apic.h b/arch/x86/include/asm/mach-generic/mach_apic.h index ddf369248ab7..bdea0a759e8a 100644 --- a/arch/x86/include/asm/mach-generic/mach_apic.h +++ b/arch/x86/include/asm/mach-generic/mach_apic.h | |||
@@ -3,7 +3,6 @@ | |||
3 | 3 | ||
4 | #include <asm/genapic.h> | 4 | #include <asm/genapic.h> |
5 | 5 | ||
6 | #define multi_timer_check (apic->multi_timer_check) | ||
7 | #define apicid_to_node (apic->apicid_to_node) | 6 | #define apicid_to_node (apic->apicid_to_node) |
8 | #define cpu_to_logical_apicid (apic->cpu_to_logical_apicid) | 7 | #define cpu_to_logical_apicid (apic->cpu_to_logical_apicid) |
9 | #define cpu_present_to_apicid (apic->cpu_present_to_apicid) | 8 | #define cpu_present_to_apicid (apic->cpu_present_to_apicid) |
diff --git a/arch/x86/include/asm/numaq/apic.h b/arch/x86/include/asm/numaq/apic.h index 2feb7e72e9ea..22bdf3d4c0e3 100644 --- a/arch/x86/include/asm/numaq/apic.h +++ b/arch/x86/include/asm/numaq/apic.h | |||
@@ -43,7 +43,7 @@ static inline void numaq_setup_apic_routing(void) | |||
43 | * Skip adding the timer int on secondary nodes, which causes | 43 | * Skip adding the timer int on secondary nodes, which causes |
44 | * a small but painful rift in the time-space continuum. | 44 | * a small but painful rift in the time-space continuum. |
45 | */ | 45 | */ |
46 | static inline int multi_timer_check(int apic, int irq) | 46 | static inline int numaq_multi_timer_check(int apic, int irq) |
47 | { | 47 | { |
48 | return apic != 0 && irq == 0; | 48 | return apic != 0 && irq == 0; |
49 | } | 49 | } |
diff --git a/arch/x86/include/asm/summit/apic.h b/arch/x86/include/asm/summit/apic.h index 7ec2696bc9a0..acb7bd1de848 100644 --- a/arch/x86/include/asm/summit/apic.h +++ b/arch/x86/include/asm/summit/apic.h | |||
@@ -64,11 +64,6 @@ static inline void summit_init_apic_ldr(void) | |||
64 | apic_write(APIC_LDR, val); | 64 | apic_write(APIC_LDR, val); |
65 | } | 65 | } |
66 | 66 | ||
67 | static inline int multi_timer_check(int apic, int irq) | ||
68 | { | ||
69 | return 0; | ||
70 | } | ||
71 | |||
72 | static inline int summit_apic_id_registered(void) | 67 | static inline int summit_apic_id_registered(void) |
73 | { | 68 | { |
74 | return 1; | 69 | return 1; |