All of lore.kernel.org
 help / color / mirror / Atom feed
From: Paolo Bonzini <pbonzini@redhat.com>
To: Wanpeng Li <wanpeng.li@linux.intel.com>
Cc: kvm@vger.kernel.org, linux-kernel@vger.kernel.org
Subject: Re: [PATCH 2/4] kvm: cpuid: fix the size of xsaves area
Date: Thu, 04 Dec 2014 14:55:57 +0100	[thread overview]
Message-ID: <548067ED.2020309@redhat.com> (raw)
In-Reply-To: <1417681468-7165-2-git-send-email-wanpeng.li@linux.intel.com>



On 04/12/2014 09:24, Wanpeng Li wrote:
> The section of CPUID(EAX=0xd, ECX=1) in the spec which commit 
> f5c2290cd01e (KVM: cpuid: mask more bits in leaf 0xd and subleaves)
> mentioned is older than SDM. 
> 
> EBX: Bits 31-00: The size in bytes of the XSAVE area containing all 
> states enabled by XCR0|IA32_XSS.
> 
> The the value of EBX should represent the size of XCR0 related XSAVE 
> area since IA32_XSS is not used currently.
> 
> Signed-off-by: Wanpeng Li <wanpeng.li@linux.intel.com>
> ---
>  arch/x86/kvm/cpuid.c | 5 ++++-
>  1 file changed, 4 insertions(+), 1 deletion(-)
> 
> diff --git a/arch/x86/kvm/cpuid.c b/arch/x86/kvm/cpuid.c
> index 646e6e8..70f0fa1 100644
> --- a/arch/x86/kvm/cpuid.c
> +++ b/arch/x86/kvm/cpuid.c
> @@ -477,7 +477,10 @@ static inline int __do_cpuid_ent(struct kvm_cpuid_entry2 *entry, u32 function,
>  			do_cpuid_1_ent(&entry[i], function, idx);
>  			if (idx == 1) {
>  				entry[i].eax &= kvm_supported_word10_x86_features;
> -				entry[i].ebx = 0;
> +				if (entry[i].eax & F(XSAVES))
> +					entry[i].ebx = xstate_required_size(supported, true);
> +				else
> +					entry[i].ebx = xstate_required_size(supported, false);

On machines without XSAVES, this value is zero though.

Paolo

>  			} else {
>  				if (entry[i].eax == 0 || !(supported & mask))
>  					continue;
> 

  reply	other threads:[~2014-12-04 13:55 UTC|newest]

Thread overview: 9+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2014-12-04  8:24 [PATCH 1/4] kvm: vmx: add nested virtualization support for xsaves Wanpeng Li
2014-12-04  8:24 ` [PATCH 2/4] kvm: cpuid: fix the size of xsaves area Wanpeng Li
2014-12-04 13:55   ` Paolo Bonzini [this message]
2014-12-04 13:59   ` Paolo Bonzini
2014-12-04  8:24 ` [PATCH 3/4] kvm: cpuid: fix xsave area size of XSAVEC Wanpeng Li
2014-12-04  8:30   ` Nadav Amit
2014-12-04  8:54     ` Wanpeng Li
2014-12-04 13:57   ` Paolo Bonzini
2014-12-04  8:24 ` [PATCH 4/4] kvm: vmx: fix VMfailValid when write vmcs02/vmcs01 Wanpeng Li

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=548067ED.2020309@redhat.com \
    --to=pbonzini@redhat.com \
    --cc=kvm@vger.kernel.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=wanpeng.li@linux.intel.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.