From mboxrd@z Thu Jan 1 00:00:00 1970 From: Bandan Das Subject: Re: [PATCH] x86: svm: make wbinvd faster Date: Mon, 02 Mar 2015 10:25:34 -0500 Message-ID: References: <20150228001917.15247.41063.stgit@joelvmguard2.amd.com> <20150302135925.GA26739@potion.brq.redhat.com> Mime-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: QUOTED-PRINTABLE Cc: Joel Schopp , Gleb Natapov , Paolo Bonzini , kvm@vger.kernel.org, David Kaplan , Joerg Roedel , Marcelo Tosatti , linux-kernel@vger.kernel.org, Borislav Petkov To: Radim =?utf-8?B?S3LEjW3DocWZ?= Return-path: In-Reply-To: <20150302135925.GA26739@potion.brq.redhat.com> ("Radim \=\?utf-8\?B\?S3LEjW3DocWZIidz\?\= message of "Mon, 2 Mar 2015 14:59:25 +0100") Sender: linux-kernel-owner@vger.kernel.org List-Id: kvm.vger.kernel.org Radim Kr=C4=8Dm=C3=A1=C5=99 writes: > 2015-03-01 21:29-0500, Bandan Das: >> Joel Schopp writes: >>=20 >> > From: David Kaplan >> > No need to re-decode WBINVD since we know what it is from the inte= rcept. >> > >> > Signed-off-by: David Kaplan >> > [extracted from larger unlrelated patch, forward ported, tested] >> > Signed-off-by: Joel Schopp >> > --- >> > diff --git a/arch/x86/kvm/svm.c b/arch/x86/kvm/svm.c >> > +static int wbinvd_interception(struct vcpu_svm *svm) >> > +{ >> > + kvm_emulate_wbinvd(&svm->vcpu); >> > + skip_emulated_instruction(&svm->vcpu); >> > + return 1; >> > +} >> > + >> > + >> Can't we merge this to kvm_emulate_wbinvd, and just call that functi= on >> directly for both vmx and svm ? > > kvm_emulate_wbinvd() lives in x86.c and skip_emulated_instruction() i= s > from svm.c/vmx.c: so we'd have to create a new x86 op and change the > emulator code as well ... it's probably better like this. There's already one - kvm_x86_ops->skip_emulated_instruction >> > static int xsetbv_interception(struct vcpu_svm *svm) >> > { >> > u64 new_bv =3D kvm_read_edx_eax(&svm->vcpu); >> > @@ -3376,7 +3384,7 @@ static int (*const svm_exit_handlers[])(stru= ct vcpu_svm *svm) =3D { >> > [SVM_EXIT_STGI] =3D stgi_interception, >> > [SVM_EXIT_CLGI] =3D clgi_interception, >> > [SVM_EXIT_SKINIT] =3D skinit_interception, >> > - [SVM_EXIT_WBINVD] =3D emulate_on_intercept= ion, >> So, this means x86_emulate_insn() in emulate.c has no callers left f= or the >> wbinvd case ? vmx calls kvm_emulate_wbinvd directly too.. > > I think that invalid state emulation might still hit wbinvd.