From: Jeremy Fitzhardinge <jeremy@goop.org>
To: Andi Kleen <ak@muc.de>
Cc: Chris Wright <chrisw@sous-sol.org>,
virtualization@lists.osdl.org, xen-devel@lists.xensource.com,
Ian Pratt <ian.pratt@xensource.com>,
Andrew Morton <akpm@linux-foundation.org>,
linux-kernel@vger.kernel.org
Subject: [patch 14/21] Xen-paravirt: Add XEN config options and disable unsupported config options.
Date: Thu, 15 Feb 2007 18:25:03 -0800 [thread overview]
Message-ID: <20070216022531.570154735@goop.org> (raw)
In-Reply-To: 20070216022449.739760547@goop.org
[-- Attachment #1: xen-config.patch --]
[-- Type: text/plain, Size: 3814 bytes --]
The XEN config option enables the Xen paravirt_ops interface, which is
installed when the kernel finds itself running under Xen. (By some
as-yet fully defined mechanism, implemented in a future patch.)
Xen is no longer a sub-architecture, so the X86_XEN subarch config
option has gone.
The disabled config options are:
- PREEMPT: Xen doesn't support it
- HZ: set to 100Hz for now, to cut down on VCPU context switch rate.
This will be adapted to use tickless later.
- kexec: not yet supported
Signed-off-by: Jeremy Fitzhardinge <jeremy@xensource.com>
Signed-off-by: Ian Pratt <ian.pratt@xensource.com>
Signed-off-by: Christian Limpach <Christian.Limpach@cl.cam.ac.uk>
Signed-off-by: Chris Wright <chrisw@sous-sol.org>
---
arch/i386/Kconfig | 7 +++++--
arch/i386/Kconfig.debug | 1 +
arch/i386/xen/Kconfig | 10 ++++++++++
kernel/Kconfig.hz | 4 ++--
kernel/Kconfig.preempt | 1 +
5 files changed, 19 insertions(+), 4 deletions(-)
===================================================================
--- a/arch/i386/Kconfig
+++ b/arch/i386/Kconfig
@@ -192,6 +192,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 ACPI_SRAT
bool
@@ -298,12 +300,12 @@ config X86_UP_IOAPIC
config X86_LOCAL_APIC
bool
- depends on X86_UP_APIC || ((X86_VISWS || SMP) && !X86_VOYAGER) || X86_GENERICARCH
+ depends on X86_UP_APIC || (((X86_VISWS || SMP) && !X86_VOYAGER) || X86_GENERICARCH)
default y
config X86_IO_APIC
bool
- depends on X86_UP_IOAPIC || (SMP && !(X86_VISWS || X86_VOYAGER)) || X86_GENERICARCH
+ depends on X86_UP_IOAPIC || ((SMP && !(X86_VISWS || X86_VOYAGER)) || X86_GENERICARCH)
default y
config X86_VISWS_APIC
@@ -743,6 +745,7 @@ source kernel/Kconfig.hz
config KEXEC
bool "kexec system call"
+ depends on !XEN
help
kexec is a system call that implements the ability to shutdown your
current kernel, and to start another kernel. It is like a reboot
===================================================================
--- a/arch/i386/Kconfig.debug
+++ b/arch/i386/Kconfig.debug
@@ -79,6 +79,7 @@ config DOUBLEFAULT
config DOUBLEFAULT
default y
bool "Enable doublefault exception handler" if EMBEDDED
+ depends on !XEN
help
This option allows trapping of rare doublefault exceptions that
would otherwise cause a system to silently reboot. Disabling this
===================================================================
--- /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 PARAVIRT
+ default y
+ help
+ This is the Linux Xen port.
===================================================================
--- a/kernel/Kconfig.hz
+++ b/kernel/Kconfig.hz
@@ -3,7 +3,7 @@
#
choice
- prompt "Timer frequency"
+ prompt "Timer frequency" if !XEN
default HZ_250
help
Allows the configuration of the timer frequency. It is customary
@@ -49,7 +49,7 @@ endchoice
config HZ
int
- default 100 if HZ_100
+ default 100 if HZ_100 || XEN
default 250 if HZ_250
default 300 if HZ_300
default 1000 if HZ_1000
===================================================================
--- a/kernel/Kconfig.preempt
+++ b/kernel/Kconfig.preempt
@@ -35,6 +35,7 @@ config PREEMPT_VOLUNTARY
config PREEMPT
bool "Preemptible Kernel (Low-Latency Desktop)"
+ depends on !XEN
help
This option reduces the latency of the kernel by making
all kernel code (that is not executing in a critical section)
--
WARNING: multiple messages have this Message-ID (diff)
From: Jeremy Fitzhardinge <jeremy@goop.org>
To: Andi Kleen <ak@muc.de>
Cc: Andrew Morton <akpm@linux-foundation.org>,
linux-kernel@vger.kernel.org, virtualization@lists.osdl.org,
xen-devel@lists.xensource.com, Chris Wright <chrisw@sous-sol.org>,
Zachary Amsden <zach@vmware.com>,
Ian Pratt <ian.pratt@xensource.com>,
Christian Limpach <Christian.Limpach@cl.cam.ac.uk>
Subject: [patch 14/21] Xen-paravirt: Add XEN config options and disable unsupported config options.
Date: Thu, 15 Feb 2007 18:25:03 -0800 [thread overview]
Message-ID: <20070216022531.570154735@goop.org> (raw)
In-Reply-To: 20070216022449.739760547@goop.org
[-- Attachment #1: xen-config.patch --]
[-- Type: text/plain, Size: 3697 bytes --]
The XEN config option enables the Xen paravirt_ops interface, which is
installed when the kernel finds itself running under Xen. (By some
as-yet fully defined mechanism, implemented in a future patch.)
Xen is no longer a sub-architecture, so the X86_XEN subarch config
option has gone.
The disabled config options are:
- PREEMPT: Xen doesn't support it
- HZ: set to 100Hz for now, to cut down on VCPU context switch rate.
This will be adapted to use tickless later.
- kexec: not yet supported
Signed-off-by: Jeremy Fitzhardinge <jeremy@xensource.com>
Signed-off-by: Ian Pratt <ian.pratt@xensource.com>
Signed-off-by: Christian Limpach <Christian.Limpach@cl.cam.ac.uk>
Signed-off-by: Chris Wright <chrisw@sous-sol.org>
---
arch/i386/Kconfig | 7 +++++--
arch/i386/Kconfig.debug | 1 +
arch/i386/xen/Kconfig | 10 ++++++++++
kernel/Kconfig.hz | 4 ++--
kernel/Kconfig.preempt | 1 +
5 files changed, 19 insertions(+), 4 deletions(-)
===================================================================
--- a/arch/i386/Kconfig
+++ b/arch/i386/Kconfig
@@ -192,6 +192,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 ACPI_SRAT
bool
@@ -298,12 +300,12 @@ config X86_UP_IOAPIC
config X86_LOCAL_APIC
bool
- depends on X86_UP_APIC || ((X86_VISWS || SMP) && !X86_VOYAGER) || X86_GENERICARCH
+ depends on X86_UP_APIC || (((X86_VISWS || SMP) && !X86_VOYAGER) || X86_GENERICARCH)
default y
config X86_IO_APIC
bool
- depends on X86_UP_IOAPIC || (SMP && !(X86_VISWS || X86_VOYAGER)) || X86_GENERICARCH
+ depends on X86_UP_IOAPIC || ((SMP && !(X86_VISWS || X86_VOYAGER)) || X86_GENERICARCH)
default y
config X86_VISWS_APIC
@@ -743,6 +745,7 @@ source kernel/Kconfig.hz
config KEXEC
bool "kexec system call"
+ depends on !XEN
help
kexec is a system call that implements the ability to shutdown your
current kernel, and to start another kernel. It is like a reboot
===================================================================
--- a/arch/i386/Kconfig.debug
+++ b/arch/i386/Kconfig.debug
@@ -79,6 +79,7 @@ config DOUBLEFAULT
config DOUBLEFAULT
default y
bool "Enable doublefault exception handler" if EMBEDDED
+ depends on !XEN
help
This option allows trapping of rare doublefault exceptions that
would otherwise cause a system to silently reboot. Disabling this
===================================================================
--- /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 PARAVIRT
+ default y
+ help
+ This is the Linux Xen port.
===================================================================
--- a/kernel/Kconfig.hz
+++ b/kernel/Kconfig.hz
@@ -3,7 +3,7 @@
#
choice
- prompt "Timer frequency"
+ prompt "Timer frequency" if !XEN
default HZ_250
help
Allows the configuration of the timer frequency. It is customary
@@ -49,7 +49,7 @@ endchoice
config HZ
int
- default 100 if HZ_100
+ default 100 if HZ_100 || XEN
default 250 if HZ_250
default 300 if HZ_300
default 1000 if HZ_1000
===================================================================
--- a/kernel/Kconfig.preempt
+++ b/kernel/Kconfig.preempt
@@ -35,6 +35,7 @@ config PREEMPT_VOLUNTARY
config PREEMPT
bool "Preemptible Kernel (Low-Latency Desktop)"
+ depends on !XEN
help
This option reduces the latency of the kernel by making
all kernel code (that is not executing in a critical section)
--
next prev parent reply other threads:[~2007-02-16 2:25 UTC|newest]
Thread overview: 194+ messages / expand[flat|nested] mbox.gz Atom feed top
2007-02-16 2:24 [patch 00/21] Xen-paravirt: Xen guest implementation for paravirt_ops interface Jeremy Fitzhardinge
2007-02-16 2:24 ` Jeremy Fitzhardinge
2007-02-16 2:24 ` [patch 01/21] Xen-paravirt: Fix typo in sync_constant_test_bit()s name Jeremy Fitzhardinge
2007-02-16 2:24 ` Jeremy Fitzhardinge
2007-02-16 2:24 ` [patch 02/21] Xen-paravirt: ignore vgacon if hardware not present Jeremy Fitzhardinge
2007-02-16 2:24 ` Jeremy Fitzhardinge
2007-02-16 2:24 ` [patch 03/21] Xen-paravirt: Add pagetable accessors to pack and unpack pagetable entries Jeremy Fitzhardinge
2007-02-16 2:24 ` Jeremy Fitzhardinge
2007-02-16 2:24 ` [patch 04/21] Xen-paravirt: =================================================================== Jeremy Fitzhardinge
2007-02-16 2:24 ` Jeremy Fitzhardinge
2007-02-16 9:12 ` Andi Kleen
2007-02-16 9:12 ` Andi Kleen
2007-02-16 17:32 ` Jeremy Fitzhardinge
2007-02-16 17:32 ` Jeremy Fitzhardinge
2007-02-16 2:24 ` [patch 05/21] Xen-paravirt: paravirt_ops: hooks to set up initial pagetable Jeremy Fitzhardinge
2007-02-16 2:24 ` Jeremy Fitzhardinge
2007-02-16 2:24 ` [patch 06/21] Xen-paravirt: paravirt_ops: allocate a fixmap slot Jeremy Fitzhardinge
2007-02-16 2:24 ` Jeremy Fitzhardinge
2007-02-16 2:24 ` [patch 07/21] Xen-paravirt: remove ctor for pgd cache Jeremy Fitzhardinge
2007-02-16 2:24 ` Jeremy Fitzhardinge
2007-02-16 6:04 ` Zachary Amsden
2007-02-16 6:04 ` Zachary Amsden
2007-02-16 8:39 ` Pekka Enberg
2007-02-16 9:19 ` Nick Piggin
2007-02-16 17:19 ` Jeremy Fitzhardinge
2007-02-16 17:19 ` Jeremy Fitzhardinge
2007-02-16 20:33 ` Christoph Lameter
2007-02-16 23:33 ` Jeremy Fitzhardinge
2007-02-16 23:33 ` Jeremy Fitzhardinge
2007-02-16 2:24 ` [patch 08/21] Xen-paravirt: Allow paravirt backend to choose kernel PMD sharing Jeremy Fitzhardinge
2007-02-16 2:24 ` Jeremy Fitzhardinge
2007-02-16 2:24 ` [patch 09/21] Xen-paravirt: Allow paravirt backend to select PGD allocation alignment Jeremy Fitzhardinge
2007-02-16 2:24 ` Jeremy Fitzhardinge
2007-02-16 2:24 ` [patch 10/21] Xen-paravirt: add hooks to intercept mm creation and destruction Jeremy Fitzhardinge
2007-02-16 2:24 ` Jeremy Fitzhardinge
2007-02-16 6:34 ` Andrew Morton
2007-02-16 6:34 ` Andrew Morton
2007-02-16 6:55 ` Jeremy Fitzhardinge
2007-02-16 6:55 ` Jeremy Fitzhardinge
2007-02-22 20:16 ` Pavel Machek
2007-02-22 20:21 ` Jeremy Fitzhardinge
2007-02-22 20:21 ` Jeremy Fitzhardinge
2007-02-22 20:23 ` Jeremy Fitzhardinge
2007-02-22 20:23 ` Jeremy Fitzhardinge
2007-02-16 2:25 ` [patch 11/21] Xen-paravirt: Add apply_to_page_range() which applies a function to a pte range Jeremy Fitzhardinge
2007-02-16 2:25 ` Jeremy Fitzhardinge
2007-02-16 6:37 ` Andrew Morton
2007-02-16 6:37 ` Andrew Morton
2007-02-16 7:06 ` Jeremy Fitzhardinge
2007-02-16 7:06 ` Jeremy Fitzhardinge
2007-02-16 7:19 ` Andrew Morton
2007-02-16 7:19 ` Andrew Morton
2007-02-16 7:23 ` Jeremy Fitzhardinge
2007-02-16 7:23 ` Jeremy Fitzhardinge
2007-02-16 7:31 ` Nick Piggin
2007-02-16 7:31 ` Nick Piggin
2007-02-16 2:25 ` [patch 12/21] Xen-paravirt: Allocate and free vmalloc areas Jeremy Fitzhardinge
2007-02-16 2:25 ` Jeremy Fitzhardinge
2007-02-16 6:43 ` Andrew Morton
2007-02-16 6:43 ` Andrew Morton
2007-02-16 7:08 ` Jeremy Fitzhardinge
2007-02-16 7:08 ` Jeremy Fitzhardinge
2007-02-16 7:24 ` Andrew Morton
2007-02-16 7:24 ` Andrew Morton
2007-02-16 7:30 ` Jeremy Fitzhardinge
2007-02-16 7:30 ` Jeremy Fitzhardinge
2007-02-16 7:49 ` Andrew Morton
2007-02-16 7:49 ` Andrew Morton
2007-02-16 9:18 ` Andi Kleen
2007-02-16 9:18 ` Andi Kleen
2007-02-16 11:10 ` [Xen-devel] " Keir Fraser
2007-02-16 11:10 ` Keir Fraser
2007-02-16 11:34 ` Andi Kleen
2007-02-16 11:34 ` [Xen-devel] " Andi Kleen
2007-02-16 11:10 ` Keir Fraser
2007-02-16 16:46 ` Jeremy Fitzhardinge
2007-02-16 16:46 ` Jeremy Fitzhardinge
2007-02-16 17:10 ` [Xen-devel] " Keir Fraser
2007-02-16 17:12 ` Keir Fraser
2007-02-16 17:12 ` Keir Fraser
2007-02-16 17:12 ` Keir Fraser
2007-02-16 17:27 ` Jeremy Fitzhardinge
2007-02-16 17:27 ` [Xen-devel] " Jeremy Fitzhardinge
2007-02-16 19:06 ` Keir Fraser
2007-02-16 19:06 ` Keir Fraser
2007-02-16 19:06 ` Keir Fraser
2007-02-16 19:19 ` Keir Fraser
2007-02-16 19:19 ` [Xen-devel] " Keir Fraser
2007-02-16 19:26 ` Jeremy Fitzhardinge
2007-02-16 19:26 ` [Xen-devel] " Jeremy Fitzhardinge
2007-02-16 23:29 ` Keir Fraser
2007-02-16 23:29 ` [Xen-devel] " Keir Fraser
2007-02-16 23:41 ` Jeremy Fitzhardinge
2007-02-16 23:41 ` [Xen-devel] " Jeremy Fitzhardinge
2007-02-16 17:26 ` Hollis Blanchard
2007-02-16 17:26 ` [Xen-devel] " Hollis Blanchard
2007-02-16 17:10 ` Keir Fraser
2007-02-16 17:10 ` Keir Fraser
2007-02-16 7:48 ` Nick Piggin
2007-02-16 2:25 ` [patch 13/21] Xen-paravirt: Add nosegneg capability to the vsyscall page notes Jeremy Fitzhardinge
2007-02-16 2:25 ` Jeremy Fitzhardinge
2007-02-16 6:06 ` Zachary Amsden
2007-02-16 6:06 ` Zachary Amsden
2007-02-16 2:25 ` Jeremy Fitzhardinge [this message]
2007-02-16 2:25 ` [patch 14/21] Xen-paravirt: Add XEN config options and disable unsupported config options Jeremy Fitzhardinge
2007-02-16 6:14 ` Dan Hecht
2007-02-16 7:04 ` Jeremy Fitzhardinge
2007-02-16 7:04 ` Jeremy Fitzhardinge
2007-02-16 7:52 ` Dan Hecht
2007-02-16 8:05 ` Jeremy Fitzhardinge
2007-02-16 8:05 ` Jeremy Fitzhardinge
2007-02-16 8:37 ` Dan Hecht
2007-02-16 10:49 ` Keir Fraser
2007-02-16 10:49 ` Keir Fraser
2007-02-16 10:49 ` Keir Fraser
2007-02-16 7:06 ` Andrew Morton
2007-02-16 7:06 ` Andrew Morton
2007-02-16 7:25 ` Jeremy Fitzhardinge
2007-02-16 7:25 ` Jeremy Fitzhardinge
2007-02-16 10:09 ` Keir Fraser
2007-02-16 10:09 ` Keir Fraser
2007-02-16 10:19 ` Zachary Amsden
2007-02-16 10:19 ` [Xen-devel] " Zachary Amsden
2007-02-16 10:44 ` Keir Fraser
2007-02-16 10:44 ` Keir Fraser
2007-02-16 10:55 ` Zachary Amsden
2007-02-16 10:55 ` [Xen-devel] " Zachary Amsden
2007-02-17 4:04 ` Rusty Russell
2007-02-17 4:04 ` [Xen-devel] " Rusty Russell
2007-02-16 6:15 ` Zachary Amsden
2007-02-16 6:15 ` Zachary Amsden
2007-02-16 7:33 ` Eric W. Biederman
2007-02-16 7:33 ` Eric W. Biederman
2007-02-16 8:14 ` Ian Campbell
2007-02-16 8:14 ` Ian Campbell
2007-02-16 8:24 ` Eric W. Biederman
2007-02-16 8:24 ` Eric W. Biederman
2007-02-16 8:31 ` Zachary Amsden
2007-02-16 8:31 ` Zachary Amsden
2007-02-16 13:53 ` Gerd Hoffmann
2007-02-16 13:53 ` [Xen-devel] " Gerd Hoffmann
2007-02-18 11:32 ` Avi Kivity
2007-02-18 11:32 ` Avi Kivity
2007-02-16 2:25 ` [patch 15/21] Xen-paravirt: Add Xen interface header files Jeremy Fitzhardinge
2007-02-16 2:25 ` [patch 16/21] Xen-paravirt: Core Xen implementation Jeremy Fitzhardinge
2007-02-16 2:25 ` Jeremy Fitzhardinge
2007-02-16 2:25 ` [patch 17/21] Xen-paravirt: Add the Xen virtual console driver Jeremy Fitzhardinge
2007-02-16 2:25 ` Jeremy Fitzhardinge
2007-02-16 6:48 ` Andrew Morton
2007-02-16 6:48 ` Andrew Morton
2007-02-16 2:25 ` [patch 18/21] Xen-paravirt: Add Xen grant table support Jeremy Fitzhardinge
2007-02-16 2:25 ` Jeremy Fitzhardinge
2007-02-16 6:52 ` Andrew Morton
2007-02-16 6:52 ` Andrew Morton
2007-02-16 6:58 ` Jeremy Fitzhardinge
2007-02-16 6:58 ` Jeremy Fitzhardinge
2007-02-16 2:25 ` [patch 19/21] Xen-paravirt: Add the Xenbus sysfs and virtual device hotplug driver Jeremy Fitzhardinge
2007-02-16 2:25 ` Jeremy Fitzhardinge
2007-02-16 2:25 ` [patch 20/21] Xen-paravirt: Add Xen virtual block device driver Jeremy Fitzhardinge
2007-02-16 2:25 ` Jeremy Fitzhardinge
2007-02-16 2:25 ` [patch 21/21] Xen-paravirt: Add the Xen virtual network " Jeremy Fitzhardinge
2007-02-16 2:25 ` Jeremy Fitzhardinge
2007-02-16 6:59 ` [patch 00/21] Xen-paravirt: Xen guest implementation for paravirt_ops interface Andrew Morton
2007-02-16 6:59 ` Andrew Morton
2007-02-16 7:20 ` Jeremy Fitzhardinge
2007-02-16 7:20 ` Jeremy Fitzhardinge
2007-02-16 20:49 ` Christoph Lameter
2007-02-16 21:04 ` Zachary Amsden
2007-02-16 21:04 ` Zachary Amsden
2007-02-16 21:13 ` Christoph Lameter
2007-02-16 21:48 ` Zachary Amsden
2007-02-16 21:48 ` Zachary Amsden
2007-02-16 21:59 ` Christoph Lameter
2007-02-16 21:59 ` Christoph Lameter
2007-02-16 22:10 ` Zachary Amsden
2007-02-17 13:51 ` Andi Kleen
2007-02-17 13:51 ` Andi Kleen
2007-02-21 18:37 ` Christoph Lameter
2007-02-21 18:55 ` Zachary Amsden
2007-02-21 18:55 ` Zachary Amsden
2007-02-21 20:02 ` Jeremy Fitzhardinge
2007-02-21 20:02 ` Jeremy Fitzhardinge
2007-02-17 5:05 ` Rusty Russell
2007-02-17 5:05 ` Rusty Russell
2007-02-16 23:49 ` Jeremy Fitzhardinge
2007-02-16 23:49 ` Jeremy Fitzhardinge
2007-02-17 4:58 ` Rusty Russell
2007-02-17 4:58 ` Rusty Russell
-- strict thread matches above, loose matches on Subject: below --
2007-02-13 22:17 Jeremy Fitzhardinge
2007-02-13 22:17 ` [patch 14/21] Xen-paravirt: Add XEN config options and disable unsupported config options Jeremy Fitzhardinge
2007-02-13 22:53 ` Dan Hecht
2007-02-13 22:53 ` Dan Hecht
2007-02-13 23:29 ` Jeremy Fitzhardinge
2007-02-13 23:29 ` Jeremy Fitzhardinge
2007-02-13 23:58 ` Dan Hecht
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20070216022531.570154735@goop.org \
--to=jeremy@goop.org \
--cc=ak@muc.de \
--cc=akpm@linux-foundation.org \
--cc=chrisw@sous-sol.org \
--cc=ian.pratt@xensource.com \
--cc=linux-kernel@vger.kernel.org \
--cc=virtualization@lists.osdl.org \
--cc=xen-devel@lists.xensource.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.