|
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [Xen-devel] [PATCH 2/2] 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 <kai.huang@xxxxxxxxxxxxxxx>
---
xen/arch/x86/hvm/vmx/vmcs.c | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/xen/arch/x86/hvm/vmx/vmcs.c b/xen/arch/x86/hvm/vmx/vmcs.c
index c11f3ec..4ea1ad1 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);
}
--
2.1.4
_______________________________________________
Xen-devel mailing list
Xen-devel@xxxxxxxxxxxxx
http://lists.xen.org/xen-devel
|
![]() |
Lists.xenproject.org is hosted with RackSpace, monitoring our |