qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
From: Paolo Bonzini <pbonzini@redhat.com>
To: Yang Zhong <yang.zhong@intel.com>
Cc: qemu-devel@nongnu.org
Subject: Re: [PATCH] target/i386: disable VMX features if nested=0
Date: Fri, 6 Dec 2019 11:02:47 +0100	[thread overview]
Message-ID: <5e9a669a-f81d-fbfb-4486-246949dc48c6@redhat.com> (raw)
In-Reply-To: <20191206071111.12128-1-yang.zhong@intel.com>

On 06/12/19 08:11, Yang Zhong wrote:
> If kvm does not support VMX feature by nested=0, the kvm_vmx_basic
> can't get the right value from MSR_IA32_VMX_BASIC register, which
> make qemu coredump when qemu do KVM_SET_MSRS.
> 
> The coredump info:
> error: failed to set MSR 0x480 to 0x0
> kvm_put_msrs: Assertion `ret == cpu->kvm_msr_buf->nmsrs' failed.
> 
> Signed-off-by: Yang Zhong <yang.zhong@intel.com>
> ---
>  target/i386/kvm.c | 8 ++++++++
>  1 file changed, 8 insertions(+)
> 
> diff --git a/target/i386/kvm.c b/target/i386/kvm.c
> index bf1655645b..e8841dcdb9 100644
> --- a/target/i386/kvm.c
> +++ b/target/i386/kvm.c
> @@ -2572,6 +2572,14 @@ static void kvm_msr_entry_add_vmx(X86CPU *cpu, FeatureWordArray f)
>      uint64_t kvm_vmx_basic =
>          kvm_arch_get_supported_msr_feature(kvm_state,
>                                             MSR_IA32_VMX_BASIC);
> +    if (!kvm_vmx_basic) {
> +        /* If the kernel does't support VMX feature(nested=0 in kvm)
> +         * and kvm_vmx_basic will be 0. This will set 0 value to
> +         * MSR_IA32_VMX_BASIC MSR.
> +         */
> +        return;
> +    }
> +
>      uint64_t kvm_vmx_misc =
>          kvm_arch_get_supported_msr_feature(kvm_state,
>                                             MSR_IA32_VMX_MISC);
> 

Queued, thanks.

Paolo



      reply	other threads:[~2019-12-06 16:25 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2019-12-06  7:11 [PATCH] target/i386: disable VMX features if nested=0 Yang Zhong
2019-12-06 10:02 ` Paolo Bonzini [this message]

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=5e9a669a-f81d-fbfb-4486-246949dc48c6@redhat.com \
    --to=pbonzini@redhat.com \
    --cc=qemu-devel@nongnu.org \
    --cc=yang.zhong@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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).