From: Jan Kiszka <jan.kiszka@siemens.com>
To: Paolo Bonzini <pbonzini@redhat.com>
Cc: Gleb Natapov <gleb@kernel.org>, kvm <kvm@vger.kernel.org>
Subject: Re: [PATCH] KVM: nVMX: Add support for activity state HLT
Date: Fri, 06 Dec 2013 13:49:09 +0100 [thread overview]
Message-ID: <52A1C7C5.10803@siemens.com> (raw)
In-Reply-To: <52A04CC8.3090007@redhat.com>
On 2013-12-05 10:52, Paolo Bonzini wrote:
> Il 04/12/2013 08:58, Jan Kiszka ha scritto:
>> We can easily emulate the HLT activity state for L1: If it decides that
>> L2 shall be halted on entry, just invoke the normal emulation of halt
>> after switching to L2. We do not depend on specific host features to
>> provide this, so we can expose the capability unconditionally.
>>
>> Signed-off-by: Jan Kiszka <jan.kiszka@siemens.com>
>> ---
>>
>> Jailhouse would like to use this. Experimental code works fine so far,
>> both on patched KVM and real HW.
>
> Nice. :)
>
> Do you have a testcase for kvm-unit-tests?
Not yet. Maybe I will find a little time these days.
Jan
>
> Paolo
>
>> arch/x86/include/asm/vmx.h | 1 +
>> arch/x86/kvm/vmx.c | 7 ++++++-
>> 2 files changed, 7 insertions(+), 1 deletion(-)
>>
>> diff --git a/arch/x86/include/asm/vmx.h b/arch/x86/include/asm/vmx.h
>> index 966502d..2067264 100644
>> --- a/arch/x86/include/asm/vmx.h
>> +++ b/arch/x86/include/asm/vmx.h
>> @@ -100,6 +100,7 @@
>>
>> #define VMX_MISC_PREEMPTION_TIMER_RATE_MASK 0x0000001f
>> #define VMX_MISC_SAVE_EFER_LMA 0x00000020
>> +#define VMX_MISC_ACTIVITY_HLT 0x00000040
>>
>> /* VMCS Encodings */
>> enum vmcs_field {
>> diff --git a/arch/x86/kvm/vmx.c b/arch/x86/kvm/vmx.c
>> index b2fe1c2..00faf1f 100644
>> --- a/arch/x86/kvm/vmx.c
>> +++ b/arch/x86/kvm/vmx.c
>> @@ -2279,6 +2279,7 @@ static __init void nested_vmx_setup_ctls_msrs(void)
>> rdmsr(MSR_IA32_VMX_MISC, nested_vmx_misc_low, nested_vmx_misc_high);
>> nested_vmx_misc_low &= VMX_MISC_PREEMPTION_TIMER_RATE_MASK |
>> VMX_MISC_SAVE_EFER_LMA;
>> + nested_vmx_misc_low |= VMX_MISC_ACTIVITY_HLT;
>> nested_vmx_misc_high = 0;
>> }
>>
>> @@ -7882,7 +7883,8 @@ static int nested_vmx_run(struct kvm_vcpu *vcpu, bool launch)
>> return 1;
>> }
>>
>> - if (vmcs12->guest_activity_state != GUEST_ACTIVITY_ACTIVE) {
>> + if (vmcs12->guest_activity_state != GUEST_ACTIVITY_ACTIVE &&
>> + vmcs12->guest_activity_state != GUEST_ACTIVITY_HLT) {
>> nested_vmx_failValid(vcpu, VMXERR_ENTRY_INVALID_CONTROL_FIELD);
>> return 1;
>> }
>> @@ -8011,6 +8013,9 @@ static int nested_vmx_run(struct kvm_vcpu *vcpu, bool launch)
>>
>> prepare_vmcs02(vcpu, vmcs12);
>>
>> + if (vmcs12->guest_activity_state == GUEST_ACTIVITY_HLT)
>> + return kvm_emulate_halt(vcpu);
>> +
>> /*
>> * Note no nested_vmx_succeed or nested_vmx_fail here. At this point
>> * we are no longer running L1, and VMLAUNCH/VMRESUME has not yet
>>
>
--
Siemens AG, Corporate Technology, CT RTC ITP SES-DE
Corporate Competence Center Embedded Linux
next prev parent reply other threads:[~2013-12-06 12:49 UTC|newest]
Thread overview: 4+ messages / expand[flat|nested] mbox.gz Atom feed top
2013-12-04 7:58 [PATCH] KVM: nVMX: Add support for activity state HLT Jan Kiszka
2013-12-05 9:52 ` Paolo Bonzini
2013-12-06 12:49 ` Jan Kiszka [this message]
2013-12-10 7:45 ` Jan Kiszka
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=52A1C7C5.10803@siemens.com \
--to=jan.kiszka@siemens.com \
--cc=gleb@kernel.org \
--cc=kvm@vger.kernel.org \
--cc=pbonzini@redhat.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.