diff options
Diffstat (limited to 'arch/i386/Kconfig')
-rw-r--r-- | arch/i386/Kconfig | 32 |
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 | ||
21 | config CLOCKSOURCE_WATCHDOG | ||
22 | bool | ||
23 | default y | ||
24 | |||
25 | config GENERIC_CLOCKEVENTS | ||
26 | bool | ||
27 | default y | ||
28 | |||
29 | config GENERIC_CLOCKEVENTS_BROADCAST | ||
30 | bool | ||
31 | default y | ||
32 | |||
21 | config LOCKDEP_SUPPORT | 33 | config LOCKDEP_SUPPORT |
22 | bool | 34 | bool |
23 | default y | 35 | default y |
@@ -74,6 +86,8 @@ source "init/Kconfig" | |||
74 | 86 | ||
75 | menu "Processor type and features" | 87 | menu "Processor type and features" |
76 | 88 | ||
89 | source "kernel/time/Kconfig" | ||
90 | |||
77 | config SMP | 91 | config 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 | ||
220 | config 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 | |||
206 | config ACPI_SRAT | 229 | config ACPI_SRAT |
207 | bool | 230 | bool |
208 | default y | 231 | default y |
@@ -1263,3 +1286,12 @@ config X86_TRAMPOLINE | |||
1263 | config KTIME_SCALAR | 1286 | config KTIME_SCALAR |
1264 | bool | 1287 | bool |
1265 | default y | 1288 | default y |
1289 | |||
1290 | config 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. | ||