]> git.ipfire.org Git - people/pmueller/ipfire-2.x.git/blob - src/patches/suse-2.6.27.39/patches.arch/x2APIC_PATCH_05_7be42004065ce4df193aeef5befd26805267d0d9
Imported linux-2.6.27.39 suse/xen patches.
[people/pmueller/ipfire-2.x.git] / src / patches / suse-2.6.27.39 / patches.arch / x2APIC_PATCH_05_7be42004065ce4df193aeef5befd26805267d0d9
1 From: Ingo Molnar <mingo@elte.hu>
2 Subject: x86, lguest: fix apic_ops build on UP
3 References: fate #303948 and fate #303984
4 Patch-Mainline: queued for .28
5 Commit-ID: 7be42004065ce4df193aeef5befd26805267d0d9
6
7 Signed-off-by: Thomas Renninger <trenn@suse.de>
8
9 fix:
10
11 arch/x86/lguest/boot.c:816: error: variable ‘lguest_basic_apic_ops’ has initializer but incomplete type
12 arch/x86/lguest/boot.c:817: error: unknown field ‘read’ specified in initializer
13 [...]
14
15 Signed-off-by: Ingo Molnar <mingo@elte.hu>
16
17 ---
18 arch/x86/lguest/boot.c | 1 +
19 1 file changed, 1 insertion(+)
20
21 Index: linux-2.6.26/arch/x86/lguest/boot.c
22 ===================================================================
23 --- linux-2.6.26.orig/arch/x86/lguest/boot.c
24 +++ linux-2.6.26/arch/x86/lguest/boot.c
25 @@ -55,6 +55,7 @@
26 #include <linux/lguest_launcher.h>
27 #include <linux/virtio_console.h>
28 #include <linux/pm.h>
29 +#include <asm/apic.h>
30 #include <asm/lguest.h>
31 #include <asm/paravirt.h>
32 #include <asm/param.h>