aboutsummaryrefslogtreecommitdiffstats
path: root/arch/x86/kernel
diff options
context:
space:
mode:
authorIngo Molnar <mingo@elte.hu>2009-02-17 06:33:20 -0500
committerIngo Molnar <mingo@elte.hu>2009-02-17 07:13:25 -0500
commit7d01d32d3b9becd6deba318b718db3d9fc181d23 (patch)
tree70f866bac39065812cd81d298a9bf16e8b60a449 /arch/x86/kernel
parentc1eeb2de41d7015678bdd412b48a5f071b84e29a (diff)
x86, apic: fix build fallout of genapic changes
- make oprofile build - select X86_X2APIC from X86_UV - it relies on it - export genapic for oprofile modular build Signed-off-by: Ingo Molnar <mingo@elte.hu>
Diffstat (limited to 'arch/x86/kernel')
-rw-r--r--arch/x86/kernel/cpu/mcheck/p4.c2
-rw-r--r--arch/x86/kernel/genapic_64.c1
-rw-r--r--arch/x86/kernel/probe_32.c2
3 files changed, 4 insertions, 1 deletions
diff --git a/arch/x86/kernel/cpu/mcheck/p4.c b/arch/x86/kernel/cpu/mcheck/p4.c
index 9b60fce09f75..f9c92b66dfbe 100644
--- a/arch/x86/kernel/cpu/mcheck/p4.c
+++ b/arch/x86/kernel/cpu/mcheck/p4.c
@@ -11,7 +11,7 @@
11#include <asm/processor.h> 11#include <asm/processor.h>
12#include <asm/system.h> 12#include <asm/system.h>
13#include <asm/msr.h> 13#include <asm/msr.h>
14#include <asm/apic.h> 14#include <asm/genapic.h>
15 15
16#include <asm/therm_throt.h> 16#include <asm/therm_throt.h>
17 17
diff --git a/arch/x86/kernel/genapic_64.c b/arch/x86/kernel/genapic_64.c
index 70b616b4c629..ef7886353240 100644
--- a/arch/x86/kernel/genapic_64.c
+++ b/arch/x86/kernel/genapic_64.c
@@ -30,6 +30,7 @@ extern struct genapic apic_x2apic_phys;
30extern struct genapic apic_x2apic_cluster; 30extern struct genapic apic_x2apic_cluster;
31 31
32struct genapic __read_mostly *apic = &apic_flat; 32struct genapic __read_mostly *apic = &apic_flat;
33EXPORT_SYMBOL_GPL(apic);
33 34
34static struct genapic *apic_probe[] __initdata = { 35static struct genapic *apic_probe[] __initdata = {
35#ifdef CONFIG_X86_UV 36#ifdef CONFIG_X86_UV
diff --git a/arch/x86/kernel/probe_32.c b/arch/x86/kernel/probe_32.c
index 1f701caa95bc..6e31b17d546d 100644
--- a/arch/x86/kernel/probe_32.c
+++ b/arch/x86/kernel/probe_32.c
@@ -8,6 +8,7 @@
8 */ 8 */
9#include <linux/threads.h> 9#include <linux/threads.h>
10#include <linux/cpumask.h> 10#include <linux/cpumask.h>
11#include <linux/module.h>
11#include <linux/string.h> 12#include <linux/string.h>
12#include <linux/kernel.h> 13#include <linux/kernel.h>
13#include <linux/ctype.h> 14#include <linux/ctype.h>
@@ -143,6 +144,7 @@ extern struct genapic apic_es7000;
143extern struct genapic apic_default; 144extern struct genapic apic_default;
144 145
145struct genapic *apic = &apic_default; 146struct genapic *apic = &apic_default;
147EXPORT_SYMBOL_GPL(apic);
146 148
147static struct genapic *apic_probe[] __initdata = { 149static struct genapic *apic_probe[] __initdata = {
148#ifdef CONFIG_X86_NUMAQ 150#ifdef CONFIG_X86_NUMAQ