aboutsummaryrefslogtreecommitdiffstats
path: root/arch/i386/Kconfig
diff options
context:
space:
mode:
Diffstat (limited to 'arch/i386/Kconfig')
-rw-r--r--arch/i386/Kconfig32
1 files changed, 32 insertions, 0 deletions
diff --git a/arch/i386/Kconfig b/arch/i386/Kconfig
index 63d5e841caf5..1df4a1f14289 100644
--- a/arch/i386/Kconfig
+++ b/arch/i386/Kconfig
@@ -18,6 +18,18 @@ config GENERIC_TIME
18 bool 18 bool
19 default y 19 default y
20 20
21config CLOCKSOURCE_WATCHDOG
22 bool
23 default y
24
25config GENERIC_CLOCKEVENTS
26 bool
27 default y
28
29config GENERIC_CLOCKEVENTS_BROADCAST
30 bool
31 default y
32
21config LOCKDEP_SUPPORT 33config LOCKDEP_SUPPORT
22 bool 34 bool
23 default y 35 default y
@@ -74,6 +86,8 @@ source "init/Kconfig"
74 86
75menu "Processor type and features" 87menu "Processor type and features"
76 88
89source "kernel/time/Kconfig"
90
77config SMP 91config SMP
78 bool "Symmetric multi-processing support" 92 bool "Symmetric multi-processing support"
79 ---help--- 93 ---help---
@@ -203,6 +217,15 @@ config PARAVIRT
203 However, when run without a hypervisor the kernel is 217 However, when run without a hypervisor the kernel is
204 theoretically slower. If in doubt, say N. 218 theoretically slower. If in doubt, say N.
205 219
220config VMI
221 bool "VMI Paravirt-ops support"
222 depends on PARAVIRT && !NO_HZ
223 default y
224 help
225 VMI provides a paravirtualized interface to multiple hypervisors
226 include VMware ESX server and Xen by connecting to a ROM module
227 provided by the hypervisor.
228
206config ACPI_SRAT 229config ACPI_SRAT
207 bool 230 bool
208 default y 231 default y
@@ -1263,3 +1286,12 @@ config X86_TRAMPOLINE
1263config KTIME_SCALAR 1286config KTIME_SCALAR
1264 bool 1287 bool
1265 default y 1288 default y
1289
1290config NO_IDLE_HZ
1291 bool
1292 depends on PARAVIRT
1293 default y
1294 help
1295 Switches the regular HZ timer off when the system is going idle.
1296 This helps a hypervisor detect that the Linux system is idle,
1297 reducing the overhead of idle systems.