public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* 2.6.26 vanilla paravirt config issue
@ 2008-07-24 17:15 Patrizio Bassi
  2008-07-24 17:41 ` Randy.Dunlap
  2008-07-24 18:30 ` Jeremy Fitzhardinge
  0 siblings, 2 replies; 4+ messages in thread
From: Patrizio Bassi @ 2008-07-24 17:15 UTC (permalink / raw)
  To: Kernel, 

Hi All

on my amd64 profile i cannot disable PARAVIRT option.

even if i disable all i still get in my .config:

# CONFIG_X86_ES7000 is not set
# CONFIG_X86_RDC321X is not set
CONFIG_X86_VSMP=y
# CONFIG_PARAVIRT_GUEST is not set
CONFIG_PARAVIRT=y    <<<<-------------------------------- issue
# CONFIG_MEMTEST_BOOTPARAM is not set
# CONFIG_M386 is not set

how to disable it? i guess it's a config bug.

CC me i'm not subscribed.

---
Patrizio Bassi

www.patriziobassi.it

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

* Re: 2.6.26 vanilla paravirt config issue
  2008-07-24 17:15 2.6.26 vanilla paravirt config issue Patrizio Bassi
@ 2008-07-24 17:41 ` Randy.Dunlap
       [not found]   ` <742b1fb30807241045q21592679xe32f59b7ab77be21@mail.gmail.com>
  2008-07-24 18:30 ` Jeremy Fitzhardinge
  1 sibling, 1 reply; 4+ messages in thread
From: Randy.Dunlap @ 2008-07-24 17:41 UTC (permalink / raw)
  To: Patrizio Bassi; +Cc: Kernel, 

On Thu, 24 Jul 2008, Patrizio Bassi wrote:

> Hi All
> 
> on my amd64 profile i cannot disable PARAVIRT option.
> 
> even if i disable all i still get in my .config:
> 
> # CONFIG_X86_ES7000 is not set
> # CONFIG_X86_RDC321X is not set
> CONFIG_X86_VSMP=y
> # CONFIG_PARAVIRT_GUEST is not set
> CONFIG_PARAVIRT=y    <<<<-------------------------------- issue
> # CONFIG_MEMTEST_BOOTPARAM is not set
> # CONFIG_M386 is not set
> 
> how to disable it? i guess it's a config bug.

Nope.  You have CONFIG_X86_VSMP enabled, which selects PARAVIRT:

config X86_VSMP
	bool "Support for ScaleMP vSMP"
	select PARAVIRT
	depends on X86_64

> CC me i'm not subscribed.

-- 
~Randy

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

* Re: 2.6.26 vanilla paravirt config issue
       [not found]   ` <742b1fb30807241045q21592679xe32f59b7ab77be21@mail.gmail.com>
@ 2008-07-24 17:51     ` Randy.Dunlap
  0 siblings, 0 replies; 4+ messages in thread
From: Randy.Dunlap @ 2008-07-24 17:51 UTC (permalink / raw)
  To: Patrizio Bassi; +Cc: Randy.Dunlap, Kernel,

On Thu, 24 Jul 2008, Patrizio Bassi wrote:

> 2008/7/24 Randy.Dunlap <rdunlap@xenotime.net>:
> >
> > On Thu, 24 Jul 2008, Patrizio Bassi wrote:
> >
> > > Hi All
> > >
> > > on my amd64 profile i cannot disable PARAVIRT option.
> > >
> > > even if i disable all i still get in my .config:
> > >
> > > # CONFIG_X86_ES7000 is not set
> > > # CONFIG_X86_RDC321X is not set
> > > CONFIG_X86_VSMP=y
> > > # CONFIG_PARAVIRT_GUEST is not set
> > > CONFIG_PARAVIRT=y    <<<<-------------------------------- issue
> > > # CONFIG_MEMTEST_BOOTPARAM is not set
> > > # CONFIG_M386 is not set
> > >
> > > how to disable it? i guess it's a config bug.
> >
> > Nope.  You have CONFIG_X86_VSMP enabled, which selects PARAVIRT:
> >
> > config X86_VSMP
> >        bool "Support for ScaleMP vSMP"
> >        select PARAVIRT
> >        depends on X86_64
> >
> > > CC me i'm not subscribed.
> 
> Oh thanks, so this means ScaleMP support can be enabled only with paravirt?

Yes.

> At the moment i don't understand the need, maybe i should study some
> documentation, do you have any pointer?

No, I don't recall seeing any docs for it.
You could try www.scalemp.com .

-- 
~Randy

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

* Re: 2.6.26 vanilla paravirt config issue
  2008-07-24 17:15 2.6.26 vanilla paravirt config issue Patrizio Bassi
  2008-07-24 17:41 ` Randy.Dunlap
@ 2008-07-24 18:30 ` Jeremy Fitzhardinge
  1 sibling, 0 replies; 4+ messages in thread
From: Jeremy Fitzhardinge @ 2008-07-24 18:30 UTC (permalink / raw)
  To: patrizio.bassi; +Cc: Kernel, 

Patrizio Bassi wrote:
> Hi All
>
> on my amd64 profile i cannot disable PARAVIRT option.
>
> even if i disable all i still get in my .config:
>
> # CONFIG_X86_ES7000 is not set
> # CONFIG_X86_RDC321X is not set
> CONFIG_X86_VSMP=y
> # CONFIG_PARAVIRT_GUEST is not set
> CONFIG_PARAVIRT=y    <<<<-------------------------------- issue
> # CONFIG_MEMTEST_BOOTPARAM is not set
> # CONFIG_M386 is not set
>
> how to disable it? i guess it's a config bug.

As Randy pointed out, VSMP selects PARAVIRT.  VSMP does something 
strange with AC in rflags and interrupt enable/disable, and so hooks the 
appropriate pvops to implement it.

What's your underlying concern about PARAVIRT?

    J

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

end of thread, other threads:[~2008-07-24 18:31 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2008-07-24 17:15 2.6.26 vanilla paravirt config issue Patrizio Bassi
2008-07-24 17:41 ` Randy.Dunlap
     [not found]   ` <742b1fb30807241045q21592679xe32f59b7ab77be21@mail.gmail.com>
2008-07-24 17:51     ` Randy.Dunlap
2008-07-24 18:30 ` Jeremy Fitzhardinge

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox