From mboxrd@z Thu Jan 1 00:00:00 1970 From: Avi Kivity Subject: Re: [PATCH V3] perf & kvm: Enhance perf to collect KVM guest os statistics from host side Date: Thu, 15 Apr 2010 12:09:28 +0300 Message-ID: <4BC6D7C8.9060302@redhat.com> References: <1902387910.2078.435.camel@ymzhang.sh.intel.com> <4BC588CF.5010507@redhat.com> <1902445479.2078.458.camel@ymzhang.sh.intel.com> <4BC6C8CD.1020801@redhat.com> <1902473858.2078.481.camel@ymzhang.sh.intel.com> <20100415090403.GA12697@8bytes.org> Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Cc: "Zhang, Yanmin" , Ingo Molnar , Peter Zijlstra , Sheng Yang , linux-kernel@vger.kernel.org, kvm@vger.kernel.org, Marcelo Tosatti , Jes Sorensen , Gleb Natapov , Zachary Amsden , zhiteng.huang@intel.com, tim.c.chen@intel.com, Arnaldo Carvalho de Melo To: oerg Roedel Return-path: In-Reply-To: <20100415090403.GA12697@8bytes.org> Sender: linux-kernel-owner@vger.kernel.org List-Id: kvm.vger.kernel.org On 04/15/2010 12:04 PM, oerg Roedel wrote: > On Mon, Apr 15, 2030 at 04:57:38PM +0800, Zhang, Yanmin wrote: > > >> I checked svm.c and it seems svm.c doesn't trigger a NMI to host if the NMI >> happens in guest os. In addition, svm_complete_interrupts is called after >> interrupt is enabled. >> > Yes. The NMI is held pending by the hardware until the STGI instruction > is executed. > And for nested svm the svm_complete_interrupts function needs to be > executed after the nested exit handling. Therefore it is done late on > svm. > So, we'd need something like the following: if (exit == NMI) __get_cpu_var(nmi_vcpu) = vcpu; stgi(); if (exit == NMI) { while (!nmi_handled()) cpu_relax(); __get_cpu_var(nmi_vcpu) = NULL; } and no code sharing betweem vmx and svm. -- I have a truly marvellous patch that fixes the bug which this signature is too narrow to contain.