xen-devel
[Xen-devel] [patch 18/26] Xen-paravirt_ops: Add XEN config options
To: |
Andi Kleen <ak@xxxxxx> |
Subject: |
[Xen-devel] [patch 18/26] Xen-paravirt_ops: Add XEN config options |
From: |
Jeremy Fitzhardinge <jeremy@xxxxxxxx> |
Date: |
Tue, 27 Feb 2007 00:13:55 -0800 |
Cc: |
Zachary Amsden <zach@xxxxxxxxxx>, xen-devel@xxxxxxxxxxxxxxxxxxx, Ian Pratt <ian.pratt@xxxxxxxxxxxxx>, Rusty Russell <rusty@xxxxxxxxxxxxxxx>, linux-kernel@xxxxxxxxxxxxxxx, Chris Wright <chrisw@xxxxxxxxxxxx>, virtualization@xxxxxxxxxxxxxx, Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx>, Christian Limpach <Christian.Limpach@xxxxxxxxxxxx> |
Delivery-date: |
Tue, 27 Feb 2007 00:43:39 -0800 |
Envelope-to: |
www-data@xxxxxxxxxxxxxxxxxx |
List-help: |
<mailto:xen-devel-request@lists.xensource.com?subject=help> |
List-id: |
Xen developer discussion <xen-devel.lists.xensource.com> |
List-post: |
<mailto:xen-devel@lists.xensource.com> |
List-subscribe: |
<http://lists.xensource.com/cgi-bin/mailman/listinfo/xen-devel>, <mailto:xen-devel-request@lists.xensource.com?subject=subscribe> |
List-unsubscribe: |
<http://lists.xensource.com/cgi-bin/mailman/listinfo/xen-devel>, <mailto:xen-devel-request@lists.xensource.com?subject=unsubscribe> |
References: |
<20070227081337.434798469@xxxxxxxx> |
Sender: |
xen-devel-bounces@xxxxxxxxxxxxxxxxxxx |
User-agent: |
quilt/0.46-1 |
The XEN config option enables the Xen paravirt_ops interface, which is
installed when the kernel finds itself running under Xen.
Xen is no longer a sub-architecture, so the X86_XEN subarch config
option has gone.
Xen is currently incompatible with:
- PREEMPT
- HZ: set to 100Hz for now, to cut down on VCPU context switch rate.
This will be adapted to use tickless later.
Signed-off-by: Jeremy Fitzhardinge <jeremy@xxxxxxxxxxxxx>
Signed-off-by: Ian Pratt <ian.pratt@xxxxxxxxxxxxx>
Signed-off-by: Christian Limpach <Christian.Limpach@xxxxxxxxxxxx>
Signed-off-by: Chris Wright <chrisw@xxxxxxxxxxxx>
---
arch/i386/Kconfig | 2 ++
arch/i386/xen/Kconfig | 10 ++++++++++
2 files changed, 12 insertions(+)
===================================================================
--- a/arch/i386/Kconfig
+++ b/arch/i386/Kconfig
@@ -216,6 +216,8 @@ config PARAVIRT
under a hypervisor, improving performance significantly.
However, when run without a hypervisor the kernel is
theoretically slower. If in doubt, say N.
+
+source "arch/i386/xen/Kconfig"
config VMI
bool "VMI Paravirt-ops support"
===================================================================
--- /dev/null
+++ b/arch/i386/xen/Kconfig
@@ -0,0 +1,10 @@
+#
+# This Kconfig describes xen options
+#
+
+config XEN
+ bool "Enable support for Xen hypervisor"
+ depends on PARAVIRT && HZ_100 && !PREEMPT && !NO_HZ
+ default y
+ help
+ This is the Linux Xen port.
--
_______________________________________________
Xen-devel mailing list
Xen-devel@xxxxxxxxxxxxxxxxxxx
http://lists.xensource.com/xen-devel
|
<Prev in Thread] |
Current Thread |
[Next in Thread>
|
- [Xen-devel] [patch 01/26] Xen-paravirt_ops: Fix typo in sync_constant_test_bit()s name., (continued)
[Xen-devel] [patch 15/26] Xen-paravirt_ops: Add apply_to_page_range() which applies a function to a pte range., Jeremy Fitzhardinge
[Xen-devel] [patch 12/26] Xen-paravirt_ops: Fix patch site clobbers to include return register, Jeremy Fitzhardinge
[Xen-devel] [patch 16/26] Xen-paravirt_ops: Allocate and free vmalloc areas, Jeremy Fitzhardinge
[Xen-devel] [patch 18/26] Xen-paravirt_ops: Add XEN config options,
Jeremy Fitzhardinge <=
[Xen-devel] [patch 10/26] Xen-paravirt_ops: rename struct paravirt_patch to paravirt_patch_site for clarity, Jeremy Fitzhardinge
[Xen-devel] [patch 04/26] Xen-paravirt_ops: Add pagetable accessors to pack and unpack pagetable entries, Jeremy Fitzhardinge
[Xen-devel] [patch 17/26] Xen-paravirt_ops: Add nosegneg capability to the vsyscall page notes, Jeremy Fitzhardinge
[Xen-devel] [patch 07/26] Xen-paravirt_ops: Allow paravirt backend to choose kernel PMD sharing, Jeremy Fitzhardinge
[Xen-devel] [patch 09/26] Xen-paravirt_ops: remove HAVE_ARCH_MM_LIFETIME, define no-op architecture implementations, Jeremy Fitzhardinge
|
|
|