public inbox for kvm@vger.kernel.org
 help / color / mirror / Atom feed
From: Vitaly Kuznetsov <vkuznets@redhat.com>
To: Haiwei Li <lihaiwei.kernel@gmail.com>
Cc: hpa@zytor.com, bp@alien8.de,
	"mingo\@redhat.com" <mingo@redhat.com>,
	"tglx\@linutronix.de" <tglx@linutronix.de>,
	"joro\@8bytes.org" <joro@8bytes.org>,
	jmattson@google.com, wanpengli@tencent.com,
	Sean Christopherson <sean.j.christopherson@intel.com>,
	"pbonzini\@redhat.com" <pbonzini@redhat.com>,
	"linux-kernel\@vger.kernel.org" <linux-kernel@vger.kernel.org>,
	kvm@vger.kernel.org, x86@kernel.org
Subject: Re: [PATCH] KVM: SVM: Fix svm the vmexit error_code of WRMSR
Date: Mon, 02 Mar 2020 13:54:15 +0100	[thread overview]
Message-ID: <87o8tehq88.fsf@vitty.brq.redhat.com> (raw)
In-Reply-To: <CAB5KdOZwZUvgmHX5C53SBU0WttEF4wBFpgqiGahD2OkojQJZ-Q@mail.gmail.com>

Haiwei Li <lihaiwei.kernel@gmail.com> writes:

>  From 1f755f75dfd73ad7cabb0e0f43e9993dd9f69120 Mon Sep 17 00:00:00 2001
> From: Haiwei Li <lihaiwei@tencent.com>
> Date: Mon, 2 Mar 2020 19:19:59 +0800
> Subject: [PATCH] KVM: SVM: Fix svm the vmexit error_code of WRMSR
>
> In svm, exit_code of write_msr is not EXIT_REASON_MSR_WRITE which
> belongs to vmx.

EXIT_REASON_MSR_WRITE is '32', in SVM this corresponds to
SVM_EXIT_READ_DR0. There were issues I guess. Or did you only detect
that the fastpath is not working?

>
> According to amd manual, SVM_EXIT_MSR(7ch) is the exit_code of VMEXIT_MSR
> due to RDMSR or WRMSR access to protected MSR. Additionally, the processor
> indicates in the VMCB's EXITINFO1 whether a RDMSR(EXITINFO1=0) or
> WRMSR(EXITINFO1=1) was intercepted.
>
> Signed-off-by: Haiwei Li <lihaiwei@tencent.com>

Fixes: 1e9e2622a149 ("KVM: VMX: FIXED+PHYSICAL mode single target IPI fastpath")

> ---
>   arch/x86/kvm/svm.c | 3 ++-
>   1 file changed, 2 insertions(+), 1 deletion(-)
>
> diff --git a/arch/x86/kvm/svm.c b/arch/x86/kvm/svm.c
> index fd3fc9f..ef71755 100644
> --- a/arch/x86/kvm/svm.c
> +++ b/arch/x86/kvm/svm.c
> @@ -6296,7 +6296,8 @@ static void svm_handle_exit_irqoff(struct kvm_vcpu
> *vcpu,
>          enum exit_fastpath_completion *exit_fastpath)
>   {
>          if (!is_guest_mode(vcpu) &&
> -               to_svm(vcpu)->vmcb->control.exit_code ==
> EXIT_REASON_MSR_WRITE)

There is an extra newline here (in case it's not just me).

> +               (to_svm(vcpu)->vmcb->control.exit_code == SVM_EXIT_MSR) &&
> +               (to_svm(vcpu)->vmcb->control.exit_info_1 & 1))

Could we add defines for '1' and '0', like
SVM_EXITINFO_MSR_WRITE/SVM_EXITINFO_MSR_READ maybe?

>                  *exit_fastpath = handle_fastpath_set_msr_irqoff(vcpu);
>   }
>
> --
> 1.8.3.1
>

-- 
Vitaly


  reply	other threads:[~2020-03-02 12:54 UTC|newest]

Thread overview: 3+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2020-03-02 12:19 [PATCH] KVM: SVM: Fix svm the vmexit error_code of WRMSR Haiwei Li
2020-03-02 12:54 ` Vitaly Kuznetsov [this message]
2020-03-02 16:05   ` Paolo Bonzini

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=87o8tehq88.fsf@vitty.brq.redhat.com \
    --to=vkuznets@redhat.com \
    --cc=bp@alien8.de \
    --cc=hpa@zytor.com \
    --cc=jmattson@google.com \
    --cc=joro@8bytes.org \
    --cc=kvm@vger.kernel.org \
    --cc=lihaiwei.kernel@gmail.com \
    --cc=linux-kernel@vger.kernel.org \
    --cc=mingo@redhat.com \
    --cc=pbonzini@redhat.com \
    --cc=sean.j.christopherson@intel.com \
    --cc=tglx@linutronix.de \
    --cc=wanpengli@tencent.com \
    --cc=x86@kernel.org \
    /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