From: Kai Huang Date: Wed, 21 Oct 2015 08:49:54 +0000 (+0200) Subject: x86/vmx: fix coding style of PML functions X-Git-Url: http://xenbits.xensource.com/gitweb?a=commitdiff_plain;h=d0b0290a996d2378aa74fe258bff7a18f7c9c553;p=people%2Froyger%2Fxen.git x86/vmx: fix coding style of PML functions According to Jan's comments, also fix the coding style of for_each_vcpu in existing PML functions. Signed-off-by: Kai Huang Reviewed-by: Andrew Cooper Acked-by: Kevin Tian --- diff --git a/xen/arch/x86/hvm/vmx/vmcs.c b/xen/arch/x86/hvm/vmx/vmcs.c index c11f3ecb7f..4ea1ad121c 100644 --- a/xen/arch/x86/hvm/vmx/vmcs.c +++ b/xen/arch/x86/hvm/vmx/vmcs.c @@ -1500,7 +1500,7 @@ int vmx_domain_enable_pml(struct domain *d) if ( vmx_domain_pml_enabled(d) ) return 0; - for_each_vcpu( d, v ) + for_each_vcpu ( d, v ) if ( (rc = vmx_vcpu_enable_pml(v)) != 0 ) goto error; @@ -1509,7 +1509,7 @@ int vmx_domain_enable_pml(struct domain *d) return 0; error: - for_each_vcpu( d, v ) + for_each_vcpu ( d, v ) if ( vmx_vcpu_pml_enabled(v) ) vmx_vcpu_disable_pml(v); return rc; @@ -1530,7 +1530,7 @@ void vmx_domain_disable_pml(struct domain *d) if ( !vmx_domain_pml_enabled(d) ) return; - for_each_vcpu( d, v ) + for_each_vcpu ( d, v ) vmx_vcpu_disable_pml(v); d->arch.hvm_domain.vmx.status &= ~VMX_DOMAIN_PML_ENABLED; @@ -1549,7 +1549,7 @@ void vmx_domain_flush_pml_buffers(struct domain *d) if ( !vmx_domain_pml_enabled(d) ) return; - for_each_vcpu( d, v ) + for_each_vcpu ( d, v ) vmx_vcpu_flush_pml_buffer(v); }