Skip to content

Commit

Permalink
x86: allow enabling PARAVIRT without any guest implementation
Browse files Browse the repository at this point in the history
This will allow people to enable the paravirt_ops code even when no
guest support is enabled, for broader testing of the paravirt_ops code.

Signed-off-by: Eduardo Habkost <ehabkost@redhat.com>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
  • Loading branch information
Eduardo Pereira Habkost authored and Ingo Molnar committed Jan 30, 2008
1 parent 612a95b commit e61bd94
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions arch/x86/Kconfig
Original file line number Diff line number Diff line change
Expand Up @@ -310,15 +310,6 @@ config SCHED_NO_NO_OMIT_FRAME_POINTER

If in doubt, say "Y".

config PARAVIRT
bool
depends on X86_32 && !(X86_VISWS || X86_VOYAGER)
help
This changes the kernel so it can modify itself when it is run
under a hypervisor, potentially improving performance significantly
over full virtualization. However, when run without a hypervisor
the kernel is theoretically slower and slightly larger.

menuconfig PARAVIRT_GUEST
bool "Paravirtualized guest support"
depends on X86_32
Expand All @@ -344,6 +335,15 @@ config VMI

source "arch/x86/lguest/Kconfig"

config PARAVIRT
bool "Enable paravirtualization code"
depends on X86_32 && !(X86_VISWS || X86_VOYAGER)
help
This changes the kernel so it can modify itself when it is run
under a hypervisor, potentially improving performance significantly
over full virtualization. However, when run without a hypervisor
the kernel is theoretically slower and slightly larger.

endif

config ACPI_SRAT
Expand Down

0 comments on commit e61bd94

Please sign in to comment.