From mboxrd@z Thu Jan 1 00:00:00 1970 From: Avi Kivity Subject: Re: [PATCH RFC 1/2] kvm vcpu: Note down pause loop exit Date: Wed, 11 Jul 2012 11:53:36 +0300 Message-ID: <4FFD3F10.5020900@redhat.com> References: <20120709062012.24030.37154.sendpatchset@codeblue> <20120709062032.24030.10454.sendpatchset@codeblue> Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Return-path: In-Reply-To: <20120709062032.24030.10454.sendpatchset@codeblue> Sender: linux-kernel-owner@vger.kernel.org List-Archive: List-Post: To: Raghavendra K T Cc: "H. Peter Anvin" , Thomas Gleixner , Ingo Molnar , Marcelo Tosatti , Rik van Riel , S390 , Carsten Otte , Christian Borntraeger , KVM , chegu vinod , "Andrew M. Theurer" , LKML , X86 , Gleb Natapov , linux390@de.ibm.com, Srivatsa Vaddagiri , Joerg Roedel List-ID: On 07/09/2012 09:20 AM, Raghavendra K T wrote: > Signed-off-by: Raghavendra K T > > Noting pause loop exited vcpu helps in filtering right candidate to yield. > Yielding to same vcpu may result in more wastage of cpu. > > > struct kvm_lpage_info { > diff --git a/arch/x86/kvm/svm.c b/arch/x86/kvm/svm.c > index f75af40..a492f5d 100644 > --- a/arch/x86/kvm/svm.c > +++ b/arch/x86/kvm/svm.c > @@ -3264,6 +3264,7 @@ static int interrupt_window_interception(struct vcpu_svm *svm) > > static int pause_interception(struct vcpu_svm *svm) > { > + svm->vcpu.arch.plo.pause_loop_exited = true; > kvm_vcpu_on_spin(&(svm->vcpu)); > return 1; > } > diff --git a/arch/x86/kvm/vmx.c b/arch/x86/kvm/vmx.c > index 32eb588..600fb3c 100644 > --- a/arch/x86/kvm/vmx.c > +++ b/arch/x86/kvm/vmx.c > @@ -4945,6 +4945,7 @@ out: > static int handle_pause(struct kvm_vcpu *vcpu) > { > skip_emulated_instruction(vcpu); > + vcpu->arch.plo.pause_loop_exited = true; > kvm_vcpu_on_spin(vcpu); > This code is duplicated. Should we move it to kvm_vcpu_on_spin? That means the .plo structure needs to be in common code, but that's not too bad perhaps. > index be6d549..07dbd14 100644 > --- a/arch/x86/kvm/x86.c > +++ b/arch/x86/kvm/x86.c > @@ -5331,7 +5331,7 @@ static int vcpu_enter_guest(struct kvm_vcpu *vcpu) > > if (req_immediate_exit) > smp_send_reschedule(vcpu->cpu); > - > + vcpu->arch.plo.pause_loop_exited = false; This adds some tiny overhead to vcpu entry. You could remove it by using the vcpu->requests mechanism to clear the flag, since vcpu->requests is already checked on every entry. > kvm_guest_enter(); > -- error compiling committee.c: too many arguments to function