All of lore.kernel.org
 help / color / mirror / Atom feed
From: Scott Wood <scottwood@freescale.com>
To: Alexander Graf <agraf@suse.de>
Cc: Stuart Yoder <stuart.yoder@freescale.com>,
	kvm-ppc@vger.kernel.org, kvm@vger.kernel.org
Subject: Re: [PATCH v10 3/5] KVM: PPC: Add support for ePAPR idle hcall in host kernel
Date: Wed, 16 May 2012 22:46:28 +0000	[thread overview]
Message-ID: <4FB42E44.6090704@freescale.com> (raw)
In-Reply-To: <E88EA8CC-A866-437C-A0CD-2AD07E77A50D@suse.de>

On 05/08/2012 05:40 AM, Alexander Graf wrote:
> 
> On 15.03.2012, at 21:52, Stuart Yoder wrote:
> 
>> From: Liu Yu-B13201 <Yu.Liu@freescale.com>
>>
>> And add a new flag definition in kvm_ppc_pvinfo to indicate
>> whether the host supports the EV_IDLE hcall.
>>
>> Signed-off-by: Liu Yu <yu.liu@freescale.com>
>> [stuart.yoder@freescale.com: cleanup,fixes for conditions allowing idle]
>> Signed-off-by: Stuart Yoder <stuart.yoder@freescale.com>
>> ---
>> -v10:
>>   -ePAPR definitions now addressed in separate patch
>>   -move clearing of KVM_REQ_UNHALT after kvm_vcpu_block() call 
>>
>> arch/powerpc/include/asm/Kbuild |    1 +
>> arch/powerpc/kvm/powerpc.c      |   20 +++++++++++++++++---
>> include/linux/kvm.h             |    2 ++
>> 3 files changed, 20 insertions(+), 3 deletions(-)
>>
>> diff --git a/arch/powerpc/include/asm/Kbuild b/arch/powerpc/include/asm/Kbuild
>> index 7e313f1..13d6b7b 100644
>> --- a/arch/powerpc/include/asm/Kbuild
>> +++ b/arch/powerpc/include/asm/Kbuild
>> @@ -34,5 +34,6 @@ header-y += termios.h
>> header-y += types.h
>> header-y += ucontext.h
>> header-y += unistd.h
>> +header-y += epapr_hcalls.h
>>
>> generic-y += rwsem.h
>> diff --git a/arch/powerpc/kvm/powerpc.c b/arch/powerpc/kvm/powerpc.c
>> index d738626..7c4e5cc 100644
>> --- a/arch/powerpc/kvm/powerpc.c
>> +++ b/arch/powerpc/kvm/powerpc.c
>> @@ -38,8 +38,7 @@
>>
>> int kvm_arch_vcpu_runnable(struct kvm_vcpu *v)
>> {
>> -	return !(v->arch.shared->msr & MSR_WE) ||
>> -	       !!(v->arch.pending_exceptions) ||
>> +	return !!(v->arch.pending_exceptions) ||
> 
> Are you sure this doesn't break book3s or e500v2?

It's only used inside kvm_vcpu_block().  We only call kvm_vcpu_block()
if there's a request to go idle (MSR[WE], hcall, etc), and MSR[WE] can't
be cleared except via exception or userspace.  Exceptions are already
checked for in runnable(), and an exit to userspace would exit
kvm_vcpu_block().

-Scott


WARNING: multiple messages have this Message-ID (diff)
From: Scott Wood <scottwood@freescale.com>
To: Alexander Graf <agraf@suse.de>
Cc: Stuart Yoder <stuart.yoder@freescale.com>,
	<kvm-ppc@vger.kernel.org>, <kvm@vger.kernel.org>
Subject: Re: [PATCH v10 3/5] KVM: PPC: Add support for ePAPR idle hcall in host kernel
Date: Wed, 16 May 2012 17:46:28 -0500	[thread overview]
Message-ID: <4FB42E44.6090704@freescale.com> (raw)
In-Reply-To: <E88EA8CC-A866-437C-A0CD-2AD07E77A50D@suse.de>

On 05/08/2012 05:40 AM, Alexander Graf wrote:
> 
> On 15.03.2012, at 21:52, Stuart Yoder wrote:
> 
>> From: Liu Yu-B13201 <Yu.Liu@freescale.com>
>>
>> And add a new flag definition in kvm_ppc_pvinfo to indicate
>> whether the host supports the EV_IDLE hcall.
>>
>> Signed-off-by: Liu Yu <yu.liu@freescale.com>
>> [stuart.yoder@freescale.com: cleanup,fixes for conditions allowing idle]
>> Signed-off-by: Stuart Yoder <stuart.yoder@freescale.com>
>> ---
>> -v10:
>>   -ePAPR definitions now addressed in separate patch
>>   -move clearing of KVM_REQ_UNHALT after kvm_vcpu_block() call 
>>
>> arch/powerpc/include/asm/Kbuild |    1 +
>> arch/powerpc/kvm/powerpc.c      |   20 +++++++++++++++++---
>> include/linux/kvm.h             |    2 ++
>> 3 files changed, 20 insertions(+), 3 deletions(-)
>>
>> diff --git a/arch/powerpc/include/asm/Kbuild b/arch/powerpc/include/asm/Kbuild
>> index 7e313f1..13d6b7b 100644
>> --- a/arch/powerpc/include/asm/Kbuild
>> +++ b/arch/powerpc/include/asm/Kbuild
>> @@ -34,5 +34,6 @@ header-y += termios.h
>> header-y += types.h
>> header-y += ucontext.h
>> header-y += unistd.h
>> +header-y += epapr_hcalls.h
>>
>> generic-y += rwsem.h
>> diff --git a/arch/powerpc/kvm/powerpc.c b/arch/powerpc/kvm/powerpc.c
>> index d738626..7c4e5cc 100644
>> --- a/arch/powerpc/kvm/powerpc.c
>> +++ b/arch/powerpc/kvm/powerpc.c
>> @@ -38,8 +38,7 @@
>>
>> int kvm_arch_vcpu_runnable(struct kvm_vcpu *v)
>> {
>> -	return !(v->arch.shared->msr & MSR_WE) ||
>> -	       !!(v->arch.pending_exceptions) ||
>> +	return !!(v->arch.pending_exceptions) ||
> 
> Are you sure this doesn't break book3s or e500v2?

It's only used inside kvm_vcpu_block().  We only call kvm_vcpu_block()
if there's a request to go idle (MSR[WE], hcall, etc), and MSR[WE] can't
be cleared except via exception or userspace.  Exceptions are already
checked for in runnable(), and an exit to userspace would exit
kvm_vcpu_block().

-Scott

  reply	other threads:[~2012-05-16 22:46 UTC|newest]

Thread overview: 22+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2012-03-15 20:52 [PATCH v10 0/5] KVM: PPC: Add ePAPR idle hcall support Stuart Yoder
2012-03-15 20:52 ` Stuart Yoder
2012-03-15 20:52 ` [PATCH v10 1/5] KVM: PPC: Factor out guest epapr initialization Stuart Yoder
2012-03-15 20:52   ` Stuart Yoder
2012-05-08 10:25   ` Alexander Graf
2012-05-08 10:25     ` Alexander Graf
2012-03-15 20:52 ` [PATCH v10 2/5] KVM: PPC: use definitions in epapr header for hcalls Stuart Yoder
2012-03-15 20:52   ` Stuart Yoder
2012-05-08 10:29   ` Alexander Graf
2012-05-08 10:29     ` Alexander Graf
2012-03-15 20:52 ` [PATCH v10 3/5] KVM: PPC: Add support for ePAPR idle hcall in host kernel Stuart Yoder
2012-03-15 20:52   ` Stuart Yoder
2012-05-08 10:40   ` Alexander Graf
2012-05-08 10:40     ` Alexander Graf
2012-05-16 22:46     ` Scott Wood [this message]
2012-05-16 22:46       ` Scott Wood
2012-03-15 20:52 ` [PATCH v10 4/5] KVM: PPC: ev_idle hcall support for e500 guests Stuart Yoder
2012-03-15 20:52   ` Stuart Yoder
2012-05-08 10:45   ` Alexander Graf
2012-05-08 10:45     ` Alexander Graf
2012-03-15 20:52 ` [PATCH v10 5/5] PPC: Don't use hardcoded opcode for ePAPR hcall invocation Stuart Yoder
2012-03-15 20:52   ` Stuart Yoder

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=4FB42E44.6090704@freescale.com \
    --to=scottwood@freescale.com \
    --cc=agraf@suse.de \
    --cc=kvm-ppc@vger.kernel.org \
    --cc=kvm@vger.kernel.org \
    --cc=stuart.yoder@freescale.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.