virtualization.lists.linux-foundation.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] no paravirt for X86_VOYAGER or X86_VISWS
@ 2006-12-09  9:51 Randy Dunlap
  2006-12-09 10:18 ` Jeremy Fitzhardinge
                   ` (2 more replies)
  0 siblings, 3 replies; 4+ messages in thread
From: Randy Dunlap @ 2006-12-09  9:51 UTC (permalink / raw)
  To: lkml; +Cc: virtualization, akpm, chrisw, rusty, jeremy, zach

From: Randy Dunlap <randy.dunlap@oracle.com>

Since Voyager and Visual WS already define ARCH_SETUP,
it looks like PARAVIRT shouldn't be offered for them.

In file included from arch/i386/kernel/setup.c:63:
include/asm-i386/mach-visws/setup_arch.h:8:1: warning: "ARCH_SETUP" redefined
In file included from include/asm/msr.h:5,
                 from include/asm/processor.h:17,
                 from include/asm/thread_info.h:16,
                 from include/linux/thread_info.h:21,
                 from include/linux/preempt.h:9,
                 from include/linux/spinlock.h:49,
                 from include/linux/capability.h:45,
                 from include/linux/sched.h:46,
                 from arch/i386/kernel/setup.c:26:
include/asm/paravirt.h:163:1: warning: this is the location of the previous definition
In file included from arch/i386/kernel/setup.c:63:
include/asm-i386/mach-visws/setup_arch.h:8:1: warning: "ARCH_SETUP" redefined
In file included from include/asm/msr.h:5,
                 from include/asm/processor.h:17,
                 from include/asm/thread_info.h:16,
                 from include/linux/thread_info.h:21,
                 from include/linux/preempt.h:9,
                 from include/linux/spinlock.h:49,
                 from include/linux/capability.h:45,
                 from include/linux/sched.h:46,
                 from arch/i386/kernel/setup.c:26:
include/asm/paravirt.h:163:1: warning: this is the location of the previous definition

Signed-off-by: Randy Dunlap <randy.dunlap@oracle.com>
---
 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


---

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [PATCH] no paravirt for X86_VOYAGER or X86_VISWS
  2006-12-09  9:51 [PATCH] no paravirt for X86_VOYAGER or X86_VISWS Randy Dunlap
@ 2006-12-09 10:18 ` Jeremy Fitzhardinge
  2006-12-09 10:25 ` Zachary Amsden
  2006-12-09 21:45 ` Chris Wright
  2 siblings, 0 replies; 4+ messages in thread
From: Jeremy Fitzhardinge @ 2006-12-09 10:18 UTC (permalink / raw)
  To: Randy Dunlap; +Cc: lkml, virtualization, akpm, chrisw, rusty, zach

Randy Dunlap wrote:
> From: Randy Dunlap <randy.dunlap@oracle.com>
>
> Since Voyager and Visual WS already define ARCH_SETUP,
> it looks like PARAVIRT shouldn't be offered for them.
>
> In file included from arch/i386/kernel/setup.c:63:
> include/asm-i386/mach-visws/setup_arch.h:8:1: warning: "ARCH_SETUP" redefined
> In file included from include/asm/msr.h:5,
>                  from include/asm/processor.h:17,
>                  from include/asm/thread_info.h:16,
>                  from include/linux/thread_info.h:21,
>                  from include/linux/preempt.h:9,
>                  from include/linux/spinlock.h:49,
>                  from include/linux/capability.h:45,
>                  from include/linux/sched.h:46,
>                  from arch/i386/kernel/setup.c:26:
> include/asm/paravirt.h:163:1: warning: this is the location of the previous definition
> In file included from arch/i386/kernel/setup.c:63:
> include/asm-i386/mach-visws/setup_arch.h:8:1: warning: "ARCH_SETUP" redefined
> In file included from include/asm/msr.h:5,
>                  from include/asm/processor.h:17,
>                  from include/asm/thread_info.h:16,
>                  from include/linux/thread_info.h:21,
>                  from include/linux/preempt.h:9,
>                  from include/linux/spinlock.h:49,
>                  from include/linux/capability.h:45,
>                  from include/linux/sched.h:46,
>                  from arch/i386/kernel/setup.c:26:
> include/asm/paravirt.h:163:1: warning: this is the location of the previous definition
>
> Signed-off-by: Randy Dunlap <randy.dunlap@oracle.com>
> ---
>  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
>   

ACK.  At some point paravirt may subsume subarches, but for now it is
only supported on standard PC-style hardware.

    J

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [PATCH] no paravirt for X86_VOYAGER or X86_VISWS
  2006-12-09  9:51 [PATCH] no paravirt for X86_VOYAGER or X86_VISWS Randy Dunlap
  2006-12-09 10:18 ` Jeremy Fitzhardinge
@ 2006-12-09 10:25 ` Zachary Amsden
  2006-12-09 21:45 ` Chris Wright
  2 siblings, 0 replies; 4+ messages in thread
From: Zachary Amsden @ 2006-12-09 10:25 UTC (permalink / raw)
  To: Randy Dunlap; +Cc: lkml, virtualization, akpm, chrisw, rusty, jeremy

Randy Dunlap wrote:
> From: Randy Dunlap <randy.dunlap@oracle.com>
>
> Since Voyager and Visual WS already define ARCH_SETUP,
> it looks like PARAVIRT shouldn't be offered for them.
>
> In file included from arch/i386/kernel/setup.c:63:
> include/asm-i386/mach-visws/setup_arch.h:8:1: warning: "ARCH_SETUP" redefined
> In file included from include/asm/msr.h:5,
>                  from include/asm/processor.h:17,
>                  from include/asm/thread_info.h:16,
>                  from include/linux/thread_info.h:21,
>                  from include/linux/preempt.h:9,
>                  from include/linux/spinlock.h:49,
>                  from include/linux/capability.h:45,
>                  from include/linux/sched.h:46,
>                  from arch/i386/kernel/setup.c:26:
> include/asm/paravirt.h:163:1: warning: this is the location of the previous definition
> In file included from arch/i386/kernel/setup.c:63:
> include/asm-i386/mach-visws/setup_arch.h:8:1: warning: "ARCH_SETUP" redefined
> In file included from include/asm/msr.h:5,
>                  from include/asm/processor.h:17,
>                  from include/asm/thread_info.h:16,
>                  from include/linux/thread_info.h:21,
>                  from include/linux/preempt.h:9,
>                  from include/linux/spinlock.h:49,
>                  from include/linux/capability.h:45,
>                  from include/linux/sched.h:46,
>                  from arch/i386/kernel/setup.c:26:
> include/asm/paravirt.h:163:1: warning: this is the location of the previous definition
>
> Signed-off-by: Randy Dunlap <randy.dunlap@oracle.com>
> ---
>  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
>
>
> ---
>
>   
Acked-by: Zachary Amsden <zach@vmware.com>

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [PATCH] no paravirt for X86_VOYAGER or X86_VISWS
  2006-12-09  9:51 [PATCH] no paravirt for X86_VOYAGER or X86_VISWS Randy Dunlap
  2006-12-09 10:18 ` Jeremy Fitzhardinge
  2006-12-09 10:25 ` Zachary Amsden
@ 2006-12-09 21:45 ` Chris Wright
  2 siblings, 0 replies; 4+ messages in thread
From: Chris Wright @ 2006-12-09 21:45 UTC (permalink / raw)
  To: Randy Dunlap; +Cc: lkml, virtualization, akpm, chrisw, rusty, jeremy, zach

* Randy Dunlap (randy.dunlap@oracle.com) wrote:
> From: Randy Dunlap <randy.dunlap@oracle.com>
> 
> Since Voyager and Visual WS already define ARCH_SETUP,
> it looks like PARAVIRT shouldn't be offered for them.
> 
> In file included from arch/i386/kernel/setup.c:63:
> include/asm-i386/mach-visws/setup_arch.h:8:1: warning: "ARCH_SETUP" redefined
> In file included from include/asm/msr.h:5,
>                  from include/asm/processor.h:17,
>                  from include/asm/thread_info.h:16,
>                  from include/linux/thread_info.h:21,
>                  from include/linux/preempt.h:9,
>                  from include/linux/spinlock.h:49,
>                  from include/linux/capability.h:45,
>                  from include/linux/sched.h:46,
>                  from arch/i386/kernel/setup.c:26:
> include/asm/paravirt.h:163:1: warning: this is the location of the previous definition
> In file included from arch/i386/kernel/setup.c:63:
> include/asm-i386/mach-visws/setup_arch.h:8:1: warning: "ARCH_SETUP" redefined
> In file included from include/asm/msr.h:5,
>                  from include/asm/processor.h:17,
>                  from include/asm/thread_info.h:16,
>                  from include/linux/thread_info.h:21,
>                  from include/linux/preempt.h:9,
>                  from include/linux/spinlock.h:49,
>                  from include/linux/capability.h:45,
>                  from include/linux/sched.h:46,
>                  from arch/i386/kernel/setup.c:26:
> include/asm/paravirt.h:163:1: warning: this is the location of the previous definition
> 
> Signed-off-by: Randy Dunlap <randy.dunlap@oracle.com>

Acked-by: Chris Wright <chrisw@sous-sol.org>

^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2006-12-09 21:45 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2006-12-09  9:51 [PATCH] no paravirt for X86_VOYAGER or X86_VISWS Randy Dunlap
2006-12-09 10:18 ` Jeremy Fitzhardinge
2006-12-09 10:25 ` Zachary Amsden
2006-12-09 21:45 ` Chris Wright

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).