public inbox for kvm@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH] Show KVM timing option only on embedded
@ 2009-12-20 21:24 Alexander Graf
       [not found] ` <1261344247-23337-1-git-send-email-agraf-l3A5Bk7waGM@public.gmane.org>
  2009-12-22 10:05 ` [PATCH] Show KVM timing option only on embedded Avi Kivity
  0 siblings, 2 replies; 5+ messages in thread
From: Alexander Graf @ 2009-12-20 21:24 UTC (permalink / raw)
  To: kvm-ppc; +Cc: kvm@vger.kernel.org list, Hollis Blanchard, Avi Kivity

Embedded PowerPC KVM has an exit timing implementation to track and evaluate
how much time was spent in which exit path.

For Book3S, we don't implement it. So let's not expose it as a config option
either.

Signed-off-by: Alexander Graf <agraf@suse.de>
---
 arch/powerpc/kvm/Kconfig |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/arch/powerpc/kvm/Kconfig b/arch/powerpc/kvm/Kconfig
index 7635ba2..be28968 100644
--- a/arch/powerpc/kvm/Kconfig
+++ b/arch/powerpc/kvm/Kconfig
@@ -54,7 +54,7 @@ config KVM_440
 
 config KVM_EXIT_TIMING
 	bool "Detailed exit timing"
-	depends on KVM
+	depends on KVM_440 || KVM_E500
 	---help---
 	  Calculate elapsed time for every exit/enter cycle. A per-vcpu
 	  report is available in debugfs kvm/vm#_vcpu#_timing.
-- 
1.6.0.2


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

* [PATCH] Change PowerPC KVM maintainer
       [not found] ` <1261344247-23337-1-git-send-email-agraf-l3A5Bk7waGM@public.gmane.org>
@ 2009-12-20 21:24   ` Alexander Graf
       [not found]     ` <1261344247-23337-2-git-send-email-agraf-l3A5Bk7waGM@public.gmane.org>
  0 siblings, 1 reply; 5+ messages in thread
From: Alexander Graf @ 2009-12-20 21:24 UTC (permalink / raw)
  To: kvm-ppc
  Cc: kvm-u79uwXL29TY76Z2rM5mHXA@public.gmane.org list,
	Hollis Blanchard, Avi Kivity

Progress on KVM for Embedded PowerPC has stalled, but for Book3S there's quite
a lot of work to do and going on.

So in agreement with Hollis and Avi, we should switch maintainers for PowerPC.

I'll still demand Acks from Hollis for code that changes BookE parts when I
can't say for sure if the change is ok.

Signed-off-by: Alexander Graf <agraf-l3A5Bk7waGM@public.gmane.org>
---
 MAINTAINERS |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/MAINTAINERS b/MAINTAINERS
index efd2ef2..0c1a696 100644
--- a/MAINTAINERS
+++ b/MAINTAINERS
@@ -3139,7 +3139,7 @@ F:	arch/x86/include/asm/svm.h
 F:	arch/x86/kvm/svm.c
 
 KERNEL VIRTUAL MACHINE (KVM) FOR POWERPC
-M:	Hollis Blanchard <hollisb-r/Jw6+rmf7HQT0dZR+AlfA@public.gmane.org>
+M:	Alexander Graf <agraf-l3A5Bk7waGM@public.gmane.org>
 L:	kvm-ppc-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
 W:	http://kvm.qumranet.com
 S:	Supported
-- 
1.6.0.2

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

* Re: [PATCH] Change PowerPC KVM maintainer
       [not found]     ` <1261344247-23337-2-git-send-email-agraf-l3A5Bk7waGM@public.gmane.org>
@ 2009-12-20 21:41       ` Hollis Blanchard
  2009-12-22 10:06       ` Avi Kivity
  1 sibling, 0 replies; 5+ messages in thread
From: Hollis Blanchard @ 2009-12-20 21:41 UTC (permalink / raw)
  To: Alexander Graf
  Cc: kvm-ppc, kvm-u79uwXL29TY76Z2rM5mHXA@public.gmane.org list,
	Avi Kivity

On Sun, Dec 20, 2009 at 1:24 PM, Alexander Graf <agraf-l3A5Bk7waGM@public.gmane.org> wrote:
> Progress on KVM for Embedded PowerPC has stalled, but for Book3S there's quite
> a lot of work to do and going on.
>
> So in agreement with Hollis and Avi, we should switch maintainers for PowerPC.
>
> I'll still demand Acks from Hollis for code that changes BookE parts when I
> can't say for sure if the change is ok.
>
> Signed-off-by: Alexander Graf <agraf-l3A5Bk7waGM@public.gmane.org>

Acked-by: Hollis Blanchard <hollis-yUx37fBWTUITNcAmw9vGhQ@public.gmane.org>

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

* Re: [PATCH] Show KVM timing option only on embedded
  2009-12-20 21:24 [PATCH] Show KVM timing option only on embedded Alexander Graf
       [not found] ` <1261344247-23337-1-git-send-email-agraf-l3A5Bk7waGM@public.gmane.org>
@ 2009-12-22 10:05 ` Avi Kivity
  1 sibling, 0 replies; 5+ messages in thread
From: Avi Kivity @ 2009-12-22 10:05 UTC (permalink / raw)
  To: Alexander Graf; +Cc: kvm-ppc, kvm@vger.kernel.org list, Hollis Blanchard

On 12/20/2009 11:24 PM, Alexander Graf wrote:
> Embedded PowerPC KVM has an exit timing implementation to track and evaluate
> how much time was spent in which exit path.
>
> For Book3S, we don't implement it. So let's not expose it as a config option
> either.
>    

Applied, thanks.

-- 
error compiling committee.c: too many arguments to function


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

* Re: [PATCH] Change PowerPC KVM maintainer
       [not found]     ` <1261344247-23337-2-git-send-email-agraf-l3A5Bk7waGM@public.gmane.org>
  2009-12-20 21:41       ` Hollis Blanchard
@ 2009-12-22 10:06       ` Avi Kivity
  1 sibling, 0 replies; 5+ messages in thread
From: Avi Kivity @ 2009-12-22 10:06 UTC (permalink / raw)
  To: Alexander Graf
  Cc: kvm-ppc, kvm-u79uwXL29TY76Z2rM5mHXA@public.gmane.org list,
	Hollis Blanchard

On 12/20/2009 11:24 PM, Alexander Graf wrote:
> Progress on KVM for Embedded PowerPC has stalled, but for Book3S there's quite
> a lot of work to do and going on.
>
> So in agreement with Hollis and Avi, we should switch maintainers for PowerPC.
>
> I'll still demand Acks from Hollis for code that changes BookE parts when I
> can't say for sure if the change is ok.
>
>    

Applied, thanks.

-- 
error compiling committee.c: too many arguments to function

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

end of thread, other threads:[~2009-12-22 10:06 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-12-20 21:24 [PATCH] Show KVM timing option only on embedded Alexander Graf
     [not found] ` <1261344247-23337-1-git-send-email-agraf-l3A5Bk7waGM@public.gmane.org>
2009-12-20 21:24   ` [PATCH] Change PowerPC KVM maintainer Alexander Graf
     [not found]     ` <1261344247-23337-2-git-send-email-agraf-l3A5Bk7waGM@public.gmane.org>
2009-12-20 21:41       ` Hollis Blanchard
2009-12-22 10:06       ` Avi Kivity
2009-12-22 10:05 ` [PATCH] Show KVM timing option only on embedded Avi Kivity

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