From mboxrd@z Thu Jan 1 00:00:00 1970 From: Tim Deegan Subject: Re: [PATCH 08/10] VMX: disable PML in vmx_vcpu_destroy Date: Thu, 9 Apr 2015 13:04:39 +0100 Message-ID: <20150409120439.GG17031@deinos.phlegethon.org> References: <1427423754-11841-1-git-send-email-kai.huang@linux.intel.com> <1427423754-11841-9-git-send-email-kai.huang@linux.intel.com> Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Return-path: Content-Disposition: inline In-Reply-To: <1427423754-11841-9-git-send-email-kai.huang@linux.intel.com> List-Unsubscribe: , List-Post: List-Help: List-Subscribe: , Sender: xen-devel-bounces@lists.xen.org Errors-To: xen-devel-bounces@lists.xen.org To: Kai Huang Cc: yang.z.zhang@intel.com, andrew.cooper3@citrix.com, kevin.tian@intel.com, jbeulich@suse.com, xen-devel@lists.xen.org List-Id: xen-devel@lists.xenproject.org At 10:35 +0800 on 27 Mar (1427452552), Kai Huang wrote: > It's possible domain still remains in log-dirty mode when it is about to be > destroyed, in which case we should manually disable PML for it. > > Signed-off-by: Kai Huang > --- > xen/arch/x86/hvm/vmx/vmx.c | 9 +++++++++ > 1 file changed, 9 insertions(+) > > diff --git a/xen/arch/x86/hvm/vmx/vmx.c b/xen/arch/x86/hvm/vmx/vmx.c > index fce3aa2..75ac44b 100644 > --- a/xen/arch/x86/hvm/vmx/vmx.c > +++ b/xen/arch/x86/hvm/vmx/vmx.c > @@ -153,6 +153,15 @@ static int vmx_vcpu_initialise(struct vcpu *v) > > static void vmx_vcpu_destroy(struct vcpu *v) > { > + /* > + * There are cases that domain still remains in log-dirty mode when it is > + * about to be destroyed (ex, user types 'xl destroy '), in which case > + * we should disable PML manually here. Note that vmx_vcpu_destroy is called > + * prior to vmx_domain_destroy so we need to disable PML for each vcpu > + * separately here. > + */ > + if ( vmx_vcpu_pml_enabled(v) ) > + vmx_vcpu_disable_pml(v); Looking at this and other callers of these enable/disable functions, I think it would be better to make those functions idempotent (i.e. *_{en,dis}able_pml() should just return success if PML is already enabled/disabled). Then you don't need to check in every caller, and there's no risk of a crash if one caller is missing the check. Cheers, Tim.