diff options
author | Linus Torvalds <torvalds@linux-foundation.org> | 2015-08-20 15:21:26 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2015-08-20 15:21:26 -0400 |
commit | 3d3e66ba2ced6c5ba7d960f106ba2d3a4444c4ab (patch) | |
tree | f4b7f3a7258e26f51f7828d0fb01df0a81f9baff | |
parent | a971dbcab969be63ca5737821c8cbd6cc26ff9ad (diff) | |
parent | 87ffd2b9bb74061c120f450e4d0f3409bb603ae0 (diff) |
Merge tag 'for-linus-4.2-rc7-tag' of git://git.kernel.org/pub/scm/linux/kernel/git/xen/tip
Pull xen build fix from David Vrabel:
"Fix i386 build with an (uncommon) configuration"
* tag 'for-linus-4.2-rc7-tag' of git://git.kernel.org/pub/scm/linux/kernel/git/xen/tip:
x86/xen: make CONFIG_XEN depend on CONFIG_X86_LOCAL_APIC
-rw-r--r-- | arch/x86/xen/Kconfig | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/x86/xen/Kconfig b/arch/x86/xen/Kconfig index e88fda867a33..484145368a24 100644 --- a/arch/x86/xen/Kconfig +++ b/arch/x86/xen/Kconfig | |||
@@ -8,7 +8,7 @@ config XEN | |||
8 | select PARAVIRT_CLOCK | 8 | select PARAVIRT_CLOCK |
9 | select XEN_HAVE_PVMMU | 9 | select XEN_HAVE_PVMMU |
10 | depends on X86_64 || (X86_32 && X86_PAE) | 10 | depends on X86_64 || (X86_32 && X86_PAE) |
11 | depends on X86_TSC | 11 | depends on X86_LOCAL_APIC && X86_TSC |
12 | help | 12 | help |
13 | This is the Linux Xen port. Enabling this will allow the | 13 | This is the Linux Xen port. Enabling this will allow the |
14 | kernel to boot in a paravirtualized environment under the | 14 | kernel to boot in a paravirtualized environment under the |
@@ -17,7 +17,7 @@ config XEN | |||
17 | config XEN_DOM0 | 17 | config XEN_DOM0 |
18 | def_bool y | 18 | def_bool y |
19 | depends on XEN && PCI_XEN && SWIOTLB_XEN | 19 | depends on XEN && PCI_XEN && SWIOTLB_XEN |
20 | depends on X86_LOCAL_APIC && X86_IO_APIC && ACPI && PCI | 20 | depends on X86_IO_APIC && ACPI && PCI |
21 | 21 | ||
22 | config XEN_PVHVM | 22 | config XEN_PVHVM |
23 | def_bool y | 23 | def_bool y |