diff options
author | Tony Luck <tony.luck@intel.com> | 2008-10-17 16:51:28 -0400 |
---|---|---|
committer | Tony Luck <tony.luck@intel.com> | 2008-10-17 16:51:28 -0400 |
commit | 22ca532a4d137545244fdff0b687325fd4e13eae (patch) | |
tree | 459f5116344c71d13d860f4fd9f0c2c477df268a /arch/ia64/Kconfig | |
parent | 9224652cc76417bfe779bcdb1243cf0b083e3eee (diff) | |
parent | f8d1f99f3958c46cdc983743d75d0b31b9accb80 (diff) |
Pull pv_ops-xen into release branch
Diffstat (limited to 'arch/ia64/Kconfig')
-rw-r--r-- | arch/ia64/Kconfig | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/arch/ia64/Kconfig b/arch/ia64/Kconfig index 892f296f99b6..239ad6b1c74f 100644 --- a/arch/ia64/Kconfig +++ b/arch/ia64/Kconfig | |||
@@ -109,6 +109,33 @@ config AUDIT_ARCH | |||
109 | bool | 109 | bool |
110 | default y | 110 | default y |
111 | 111 | ||
112 | menuconfig PARAVIRT_GUEST | ||
113 | bool "Paravirtualized guest support" | ||
114 | help | ||
115 | Say Y here to get to see options related to running Linux under | ||
116 | various hypervisors. This option alone does not add any kernel code. | ||
117 | |||
118 | If you say N, all options in this submenu will be skipped and disabled. | ||
119 | |||
120 | if PARAVIRT_GUEST | ||
121 | |||
122 | config PARAVIRT | ||
123 | bool "Enable paravirtualization code" | ||
124 | depends on PARAVIRT_GUEST | ||
125 | default y | ||
126 | bool | ||
127 | default y | ||
128 | help | ||
129 | This changes the kernel so it can modify itself when it is run | ||
130 | under a hypervisor, potentially improving performance significantly | ||
131 | over full virtualization. However, when run without a hypervisor | ||
132 | the kernel is theoretically slower and slightly larger. | ||
133 | |||
134 | |||
135 | source "arch/ia64/xen/Kconfig" | ||
136 | |||
137 | endif | ||
138 | |||
112 | choice | 139 | choice |
113 | prompt "System type" | 140 | prompt "System type" |
114 | default IA64_GENERIC | 141 | default IA64_GENERIC |
@@ -130,6 +157,7 @@ config IA64_GENERIC | |||
130 | SGI-SN2 For SGI Altix systems | 157 | SGI-SN2 For SGI Altix systems |
131 | SGI-UV For SGI UV systems | 158 | SGI-UV For SGI UV systems |
132 | Ski-simulator For the HP simulator <http://www.hpl.hp.com/research/linux/ski/> | 159 | Ski-simulator For the HP simulator <http://www.hpl.hp.com/research/linux/ski/> |
160 | Xen-domU For xen domU system | ||
133 | 161 | ||
134 | If you don't know what to do, choose "generic". | 162 | If you don't know what to do, choose "generic". |
135 | 163 | ||
@@ -180,6 +208,10 @@ config IA64_HP_SIM | |||
180 | bool "Ski-simulator" | 208 | bool "Ski-simulator" |
181 | select SWIOTLB | 209 | select SWIOTLB |
182 | 210 | ||
211 | config IA64_XEN_GUEST | ||
212 | bool "Xen guest" | ||
213 | depends on XEN | ||
214 | |||
183 | endchoice | 215 | endchoice |
184 | 216 | ||
185 | choice | 217 | choice |