提交 1a8880a1 编写于 作者: S Suresh Siddha 提交者: Ingo Molnar

x86, apic: Make apic drivers static

Apic probe now looks at the apic drivers listed in the
.apicdrivers section. Remove apic_probe[] and make each apic
driver static.
Signed-off-by: NSuresh Siddha <suresh.b.siddha@intel.com>
Tested-by: NCyrill Gorcunov <gorcunov@openvz.org>
Cc: steiner@sgi.com
Cc: gorcunov@openvz.org
Cc: yinghai@kernel.org
Link: http://lkml.kernel.org/r/20110521005526.341718626@sbsiddha-MOBL3.sc.intel.comSigned-off-by: NIngo Molnar <mingo@elte.hu>
上级 69c252ff
...@@ -478,15 +478,10 @@ static inline unsigned default_get_apic_id(unsigned long x) ...@@ -478,15 +478,10 @@ static inline unsigned default_get_apic_id(unsigned long x)
#define DEFAULT_TRAMPOLINE_PHYS_HIGH 0x469 #define DEFAULT_TRAMPOLINE_PHYS_HIGH 0x469
#ifdef CONFIG_X86_64 #ifdef CONFIG_X86_64
extern struct apic apic_flat;
extern struct apic apic_physflat;
extern struct apic apic_x2apic_cluster;
extern struct apic apic_x2apic_phys;
extern int default_acpi_madt_oem_check(char *, char *); extern int default_acpi_madt_oem_check(char *, char *);
extern void apic_send_IPI_self(int vector); extern void apic_send_IPI_self(int vector);
extern struct apic apic_x2apic_uv_x;
DECLARE_PER_CPU(int, x2apic_extra_bits); DECLARE_PER_CPU(int, x2apic_extra_bits);
extern int default_cpu_present_to_apicid(int mps_cpu); extern int default_cpu_present_to_apicid(int mps_cpu);
...@@ -536,8 +531,6 @@ extern struct apic apic_noop; ...@@ -536,8 +531,6 @@ extern struct apic apic_noop;
#ifdef CONFIG_X86_32 #ifdef CONFIG_X86_32
extern struct apic apic_default;
static inline int noop_x86_32_early_logical_apicid(int cpu) static inline int noop_x86_32_early_logical_apicid(int cpu)
{ {
return BAD_APICID; return BAD_APICID;
......
...@@ -24,6 +24,12 @@ ...@@ -24,6 +24,12 @@
#include <acpi/acpi_bus.h> #include <acpi/acpi_bus.h>
#endif #endif
static struct apic apic_physflat;
static struct apic apic_flat;
struct apic __read_mostly *apic = &apic_flat;
EXPORT_SYMBOL_GPL(apic);
static int flat_acpi_madt_oem_check(char *oem_id, char *oem_table_id) static int flat_acpi_madt_oem_check(char *oem_id, char *oem_table_id)
{ {
return 1; return 1;
...@@ -164,7 +170,7 @@ static int flat_phys_pkg_id(int initial_apic_id, int index_msb) ...@@ -164,7 +170,7 @@ static int flat_phys_pkg_id(int initial_apic_id, int index_msb)
return initial_apic_id >> index_msb; return initial_apic_id >> index_msb;
} }
struct apic apic_flat = { static struct apic apic_flat = {
.name = "flat", .name = "flat",
.probe = NULL, .probe = NULL,
.acpi_madt_oem_check = flat_acpi_madt_oem_check, .acpi_madt_oem_check = flat_acpi_madt_oem_check,
...@@ -320,7 +326,7 @@ static int physflat_probe(void) ...@@ -320,7 +326,7 @@ static int physflat_probe(void)
return 0; return 0;
} }
struct apic apic_physflat = { static struct apic apic_physflat = {
.name = "physical flat", .name = "physical flat",
.probe = physflat_probe, .probe = physflat_probe,
......
...@@ -193,7 +193,7 @@ static int probe_bigsmp(void) ...@@ -193,7 +193,7 @@ static int probe_bigsmp(void)
return dmi_bigsmp; return dmi_bigsmp;
} }
struct apic apic_bigsmp = { static struct apic apic_bigsmp = {
.name = "bigsmp", .name = "bigsmp",
.probe = probe_bigsmp, .probe = probe_bigsmp,
......
...@@ -620,7 +620,7 @@ static int es7000_mps_oem_check_cluster(struct mpc_table *mpc, char *oem, ...@@ -620,7 +620,7 @@ static int es7000_mps_oem_check_cluster(struct mpc_table *mpc, char *oem,
} }
/* We've been warned by a false positive warning.Use __refdata to keep calm. */ /* We've been warned by a false positive warning.Use __refdata to keep calm. */
struct apic __refdata apic_es7000_cluster = { static struct apic __refdata apic_es7000_cluster = {
.name = "es7000", .name = "es7000",
.probe = probe_es7000, .probe = probe_es7000,
...@@ -685,7 +685,7 @@ struct apic __refdata apic_es7000_cluster = { ...@@ -685,7 +685,7 @@ struct apic __refdata apic_es7000_cluster = {
.x86_32_early_logical_apicid = es7000_early_logical_apicid, .x86_32_early_logical_apicid = es7000_early_logical_apicid,
}; };
struct apic __refdata apic_es7000 = { static struct apic __refdata apic_es7000 = {
.name = "es7000", .name = "es7000",
.probe = probe_es7000, .probe = probe_es7000,
......
...@@ -472,8 +472,8 @@ static void numaq_setup_portio_remap(void) ...@@ -472,8 +472,8 @@ static void numaq_setup_portio_remap(void)
(u_long) xquad_portio, (u_long) num_quads*XQUAD_PORTIO_QUAD); (u_long) xquad_portio, (u_long) num_quads*XQUAD_PORTIO_QUAD);
} }
/* Use __refdata to keep false positive warning calm. */ /* Use __refdata to keep false positive warning calm. */
struct apic __refdata apic_numaq = { static struct apic __refdata apic_numaq = {
.name = "NUMAQ", .name = "NUMAQ",
.probe = probe_numaq, .probe = probe_numaq,
......
...@@ -87,7 +87,7 @@ static int probe_default(void) ...@@ -87,7 +87,7 @@ static int probe_default(void)
return 1; return 1;
} }
struct apic apic_default = { static struct apic apic_default = {
.name = "default", .name = "default",
.probe = probe_default, .probe = probe_default,
...@@ -151,33 +151,9 @@ struct apic apic_default = { ...@@ -151,33 +151,9 @@ struct apic apic_default = {
apic_driver(apic_default); apic_driver(apic_default);
extern struct apic apic_numaq;
extern struct apic apic_summit;
extern struct apic apic_bigsmp;
extern struct apic apic_es7000;
extern struct apic apic_es7000_cluster;
struct apic *apic = &apic_default; struct apic *apic = &apic_default;
EXPORT_SYMBOL_GPL(apic); EXPORT_SYMBOL_GPL(apic);
static struct apic *apic_probe[] __initdata = {
#ifdef CONFIG_X86_NUMAQ
&apic_numaq,
#endif
#ifdef CONFIG_X86_SUMMIT
&apic_summit,
#endif
#ifdef CONFIG_X86_BIGSMP
&apic_bigsmp,
#endif
#ifdef CONFIG_X86_ES7000
&apic_es7000,
&apic_es7000_cluster,
#endif
&apic_default, /* must be last */
NULL,
};
static int cmdline_apic __initdata; static int cmdline_apic __initdata;
static int __init parse_apic(char *arg) static int __init parse_apic(char *arg)
{ {
......
...@@ -23,27 +23,6 @@ ...@@ -23,27 +23,6 @@
#include <asm/ipi.h> #include <asm/ipi.h>
#include <asm/setup.h> #include <asm/setup.h>
extern struct apic apic_flat;
extern struct apic apic_physflat;
extern struct apic apic_x2xpic_uv_x;
extern struct apic apic_x2apic_phys;
extern struct apic apic_x2apic_cluster;
struct apic __read_mostly *apic = &apic_flat;
EXPORT_SYMBOL_GPL(apic);
static struct apic *apic_probe[] __initdata = {
#ifdef CONFIG_X86_UV
&apic_x2apic_uv_x,
#endif
#ifdef CONFIG_X86_X2APIC
&apic_x2apic_phys,
&apic_x2apic_cluster,
#endif
&apic_physflat,
NULL,
};
static int apicid_phys_pkg_id(int initial_apic_id, int index_msb) static int apicid_phys_pkg_id(int initial_apic_id, int index_msb)
{ {
return hard_smp_processor_id() >> index_msb; return hard_smp_processor_id() >> index_msb;
......
...@@ -491,7 +491,7 @@ void setup_summit(void) ...@@ -491,7 +491,7 @@ void setup_summit(void)
} }
#endif #endif
struct apic apic_summit = { static struct apic apic_summit = {
.name = "summit", .name = "summit",
.probe = probe_summit, .probe = probe_summit,
......
...@@ -208,7 +208,7 @@ static int x2apic_cluster_probe(void) ...@@ -208,7 +208,7 @@ static int x2apic_cluster_probe(void)
return 0; return 0;
} }
struct apic apic_x2apic_cluster = { static struct apic apic_x2apic_cluster = {
.name = "cluster x2apic", .name = "cluster x2apic",
.probe = x2apic_cluster_probe, .probe = x2apic_cluster_probe,
......
...@@ -11,6 +11,8 @@ ...@@ -11,6 +11,8 @@
int x2apic_phys; int x2apic_phys;
static struct apic apic_x2apic_phys;
static int set_x2apic_phys_mode(char *arg) static int set_x2apic_phys_mode(char *arg)
{ {
x2apic_phys = 1; x2apic_phys = 1;
...@@ -112,7 +114,7 @@ static int x2apic_phys_probe(void) ...@@ -112,7 +114,7 @@ static int x2apic_phys_probe(void)
return apic == &apic_x2apic_phys; return apic == &apic_x2apic_phys;
} }
struct apic apic_x2apic_phys = { static struct apic apic_x2apic_phys = {
.name = "physical x2apic", .name = "physical x2apic",
.probe = x2apic_phys_probe, .probe = x2apic_phys_probe,
......
...@@ -58,6 +58,8 @@ unsigned int uv_apicid_hibits; ...@@ -58,6 +58,8 @@ unsigned int uv_apicid_hibits;
EXPORT_SYMBOL_GPL(uv_apicid_hibits); EXPORT_SYMBOL_GPL(uv_apicid_hibits);
static DEFINE_SPINLOCK(uv_nmi_lock); static DEFINE_SPINLOCK(uv_nmi_lock);
static struct apic apic_x2apic_uv_x;
static unsigned long __init uv_early_read_mmr(unsigned long addr) static unsigned long __init uv_early_read_mmr(unsigned long addr)
{ {
unsigned long val, *mmr; unsigned long val, *mmr;
...@@ -331,7 +333,7 @@ static int uv_probe(void) ...@@ -331,7 +333,7 @@ static int uv_probe(void)
return apic == &apic_x2apic_uv_x; return apic == &apic_x2apic_uv_x;
} }
struct apic __refdata apic_x2apic_uv_x = { static struct apic __refdata apic_x2apic_uv_x = {
.name = "UV large system", .name = "UV large system",
.probe = uv_probe, .probe = uv_probe,
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册