search for: x86_visws

Displaying 20 results from an estimated 41 matches for "x86_visws".

2007 Apr 18
4
[RFC, PATCH 2/24] i386 Vmi config
...hypervisor present. + The kernel will panic if booted on native hardware. + +config VMI_DEBUG + bool "VMI debugging" + default n + help + Provides extra debugging output and testing of VMI interfaces. + +endmenu + config ACPI_SRAT bool default y @@ -270,7 +295,7 @@ config X86_VISWS_APIC config X86_MCE bool "Machine Check Exception" - depends on !X86_VOYAGER + depends on !(X86_VOYAGER) ---help--- Machine Check Exception support allows the processor to notify the kernel if it detects a problem (e.g. overheating, component failure). @@ -307,6 +332,7 @@ c...
2007 Apr 18
4
[RFC, PATCH 2/24] i386 Vmi config
...hypervisor present. + The kernel will panic if booted on native hardware. + +config VMI_DEBUG + bool "VMI debugging" + default n + help + Provides extra debugging output and testing of VMI interfaces. + +endmenu + config ACPI_SRAT bool default y @@ -270,7 +295,7 @@ config X86_VISWS_APIC config X86_MCE bool "Machine Check Exception" - depends on !X86_VOYAGER + depends on !(X86_VOYAGER) ---help--- Machine Check Exception support allows the processor to notify the kernel if it detects a problem (e.g. overheating, component failure). @@ -307,6 +332,7 @@ c...
2011 Apr 04
0
[PATCH] xen: drop anti-dependency on X86_VISWS
...e been added in f0f32fccbffa to avoid a conflict arising from the long deceased ARCH_SETUP() macro and subsequently pushed down to the XEN option. As far as I can tell the conflict is no longer present and by dropping the dependency I was able to build a kernel which has both CONFIG_XEN and CONFIG_X86_VISWS enabled and boot it on Xen. I didn't try it on the VISWS platform. Signed-off-by: Ian Campbell <ian.campbell at citrix.com> Cc: Jeremy Fitzhardinge <jeremy at goop.org> Cc: konrad.wilk at oracle.com Cc: xen-devel at lists.xensource.com Cc: Randy Dunlap <randy.dunlap at oracle.co...
2011 Apr 04
0
[PATCH] xen: drop anti-dependency on X86_VISWS
...e been added in f0f32fccbffa to avoid a conflict arising from the long deceased ARCH_SETUP() macro and subsequently pushed down to the XEN option. As far as I can tell the conflict is no longer present and by dropping the dependency I was able to build a kernel which has both CONFIG_XEN and CONFIG_X86_VISWS enabled and boot it on Xen. I didn't try it on the VISWS platform. Signed-off-by: Ian Campbell <ian.campbell at citrix.com> Cc: Jeremy Fitzhardinge <jeremy at goop.org> Cc: konrad.wilk at oracle.com Cc: xen-devel at lists.xensource.com Cc: Randy Dunlap <randy.dunlap at oracle.co...
2007 Sep 24
3
[PATCH 1/3] Virtualization config cleanup: Select CONFIG_PARAVIRT when required
...config | 1 + 2 files changed, 21 insertions(+), 13 deletions(-) =================================================================== --- a/arch/i386/Kconfig +++ b/arch/i386/Kconfig @@ -214,24 +214,30 @@ config X86_ES7000 endchoice -menuconfig PARAVIRT +config PARAVIRT + bool + depends on !(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. + +menu...
2007 Sep 24
3
[PATCH 1/3] Virtualization config cleanup: Select CONFIG_PARAVIRT when required
...config | 1 + 2 files changed, 21 insertions(+), 13 deletions(-) =================================================================== --- a/arch/i386/Kconfig +++ b/arch/i386/Kconfig @@ -214,24 +214,30 @@ config X86_ES7000 endchoice -menuconfig PARAVIRT +config PARAVIRT + bool + depends on !(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. + +menu...
2007 Apr 18
3
[PATCH] no paravirt for X86_VOYAGER or X86_VISWS
...-- arch/i386/Kconfig | 1 + 1 file changed, 1 insertion(+) --- linux-2.6.19-git13.orig/arch/i386/Kconfig +++ linux-2.6.19-git13/arch/i386/Kconfig @@ -190,6 +190,7 @@ endchoice config PARAVIRT bool "Paravirtualization support (EXPERIMENTAL)" depends on EXPERIMENTAL + depends on !(X86_VISWS || X86_VOYAGER) help Paravirtualization is a way of running multiple instances of Linux on the same machine, under a hypervisor. This option ---
2007 Apr 18
3
[PATCH] no paravirt for X86_VOYAGER or X86_VISWS
...-- arch/i386/Kconfig | 1 + 1 file changed, 1 insertion(+) --- linux-2.6.19-git13.orig/arch/i386/Kconfig +++ linux-2.6.19-git13/arch/i386/Kconfig @@ -190,6 +190,7 @@ endchoice config PARAVIRT bool "Paravirtualization support (EXPERIMENTAL)" depends on EXPERIMENTAL + depends on !(X86_VISWS || X86_VOYAGER) help Paravirtualization is a way of running multiple instances of Linux on the same machine, under a hypervisor. This option ---
2008 Jan 21
7
[PATCH 0/4] paravirt_ops-64 compile fixes
This series contain fixes to make the paravirt_ops code compile and boot on x86_64. This is a follow-up for the previous series from Glauber.
2008 Jan 21
7
[PATCH 0/4] paravirt_ops-64 compile fixes
This series contain fixes to make the paravirt_ops code compile and boot on x86_64. This is a follow-up for the previous series from Glauber.
2007 Apr 18
3
[PATCH] make CONFIG_PARAVIRT require NO_HZ
...a/arch/i386/Kconfig Mon Mar 12 11:07:45 2007 -0700 +++ b/arch/i386/Kconfig Mon Mar 12 16:53:14 2007 -0700 @@ -208,7 +208,7 @@ endchoice config PARAVIRT bool "Paravirtualization support (EXPERIMENTAL)" - depends on EXPERIMENTAL + depends on EXPERIMENTAL && NO_HZ depends on !(X86_VISWS || X86_VOYAGER) help Paravirtualization is a way of running multiple instances of
2007 Apr 18
3
[PATCH] make CONFIG_PARAVIRT require NO_HZ
...a/arch/i386/Kconfig Mon Mar 12 11:07:45 2007 -0700 +++ b/arch/i386/Kconfig Mon Mar 12 16:53:14 2007 -0700 @@ -208,7 +208,7 @@ endchoice config PARAVIRT bool "Paravirtualization support (EXPERIMENTAL)" - depends on EXPERIMENTAL + depends on EXPERIMENTAL && NO_HZ depends on !(X86_VISWS || X86_VOYAGER) help Paravirtualization is a way of running multiple instances of
2012 Oct 17
1
[PATCH 1/6] xen: balloon: allow PVMMU interfaces to be compiled out
...b/arch/x86/xen/Kconfig index 9323b8c..6d101a1 100644 --- a/arch/x86/xen/Kconfig +++ b/arch/x86/xen/Kconfig @@ -6,6 +6,7 @@ config XEN bool "Xen guest support" select PARAVIRT select PARAVIRT_CLOCK + select XEN_HAVE_PVMMU depends on X86_64 || (X86_32 && X86_PAE && !X86_VISWS) depends on X86_CMPXCHG && X86_TSC help diff --git a/drivers/xen/Kconfig b/drivers/xen/Kconfig index d4dffcd..9c00652 100644 --- a/drivers/xen/Kconfig +++ b/drivers/xen/Kconfig @@ -204,4 +204,7 @@ config XEN_MCE_LOG Allow kernel fetching MCE error from Xen platform and convertin...
2011 Apr 08
0
[PATCH] xen: remove Kconfig dependency on X86_TSC
...ertions(+), 1 deletions(-) diff --git a/arch/x86/xen/Kconfig b/arch/x86/xen/Kconfig index 1c7121b..ac69c5b 100644 --- a/arch/x86/xen/Kconfig +++ b/arch/x86/xen/Kconfig @@ -7,7 +7,7 @@ config XEN select PARAVIRT select PARAVIRT_CLOCK depends on X86_64 || (X86_32 && X86_PAE && !X86_VISWS) - depends on X86_CMPXCHG && X86_TSC + depends on X86_CMPXCHG help This is the Linux Xen port. Enabling this will allow the kernel to boot in a paravirtualized environment under the -- 1.7.4.1
2011 Apr 08
0
[PATCH] xen: remove Kconfig dependency on X86_TSC
...ertions(+), 1 deletions(-) diff --git a/arch/x86/xen/Kconfig b/arch/x86/xen/Kconfig index 1c7121b..ac69c5b 100644 --- a/arch/x86/xen/Kconfig +++ b/arch/x86/xen/Kconfig @@ -7,7 +7,7 @@ config XEN select PARAVIRT select PARAVIRT_CLOCK depends on X86_64 || (X86_32 && X86_PAE && !X86_VISWS) - depends on X86_CMPXCHG && X86_TSC + depends on X86_CMPXCHG help This is the Linux Xen port. Enabling this will allow the kernel to boot in a paravirtualized environment under the -- 1.7.4.1
2007 Sep 13
1
[PATCH 1/3] Normalize config options for guest support
...6/Kconfig Fri Sep 14 12:45:09 2007 +1000 @@ -214,28 +214,38 @@ config X86_ES7000 endchoice -config PARAVIRT - bool "Paravirtualization support (EXPERIMENTAL)" +menuconfig PARAVIRT + bool "Paravirtualized guest support (EXPERIMENTAL)" depends on EXPERIMENTAL depends on !(X86_VISWS || X86_VOYAGER) help Paravirtualization is a way of running multiple instances of Linux on the same machine, under a hypervisor. This option changes the kernel so it can modify itself when it is run under a hypervisor, improving performance significantly. However, when run wi...
2007 Sep 13
1
[PATCH 1/3] Normalize config options for guest support
...6/Kconfig Fri Sep 14 12:45:09 2007 +1000 @@ -214,28 +214,38 @@ config X86_ES7000 endchoice -config PARAVIRT - bool "Paravirtualization support (EXPERIMENTAL)" +menuconfig PARAVIRT + bool "Paravirtualized guest support (EXPERIMENTAL)" depends on EXPERIMENTAL depends on !(X86_VISWS || X86_VOYAGER) help Paravirtualization is a way of running multiple instances of Linux on the same machine, under a hypervisor. This option changes the kernel so it can modify itself when it is run under a hypervisor, improving performance significantly. However, when run wi...
2008 May 08
4
[PATCH 0/4] paravirt clock series.
Respin of the paravirt clock patch series. On the host side the kvm paravirt clock is made compatible with the xen clock. On the guest side some xen code has been factored out into a separate source file shared by both kvm and xen clock implementations. This time it should work ok for kvm smp guests ;) cheers, Gerd
2008 May 08
4
[PATCH 0/4] paravirt clock series.
Respin of the paravirt clock patch series. On the host side the kvm paravirt clock is made compatible with the xen clock. On the guest side some xen code has been factored out into a separate source file shared by both kvm and xen clock implementations. This time it should work ok for kvm smp guests ;) cheers, Gerd
2008 May 16
5
[PATCH 0/4] paravirt clock source patches, #3
paravirt clock source patches, next round, with a bunch of changes in the host code according to Avi's review comments and some minor code tweaks. cheers, Gerd