All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] Nested VMX: load current_vmcs only when it exists
@ 2014-05-09  4:56 Yang Zhang
  2014-05-09  5:53 ` Tian, Kevin
  2014-05-09  9:46 ` Jan Beulich
  0 siblings, 2 replies; 5+ messages in thread
From: Yang Zhang @ 2014-05-09  4:56 UTC (permalink / raw)
  To: xen-devel; +Cc: Yang Zhang, kevin.tian, keir.xen, Edmund H White, JBeulich

From: Yang Zhang <yang.z.zhang@Intel.com>

There may not have valid vmcs on current CPU. So only load it when it exists.

This original fixing is from Edmud <edmund.h.white@intel.com>.

Signed-off-by: Edmund H White <edmund.h.white@intel.com>
Signed-off-by: Yang Zhang <yang.z.zhang@Intel.com>
---
 xen/arch/x86/hvm/vmx/vmcs.c |    6 +++++-
 1 files changed, 5 insertions(+), 1 deletions(-)

diff --git a/xen/arch/x86/hvm/vmx/vmcs.c b/xen/arch/x86/hvm/vmx/vmcs.c
index cc84ca2..7564895 100644
--- a/xen/arch/x86/hvm/vmx/vmcs.c
+++ b/xen/arch/x86/hvm/vmx/vmcs.c
@@ -824,8 +824,12 @@ void virtual_vmcs_enter(void *vvmcs)
 
 void virtual_vmcs_exit(void *vvmcs)
 {
+    struct vmcs_struct *cur = this_cpu(current_vmcs);
+
     __vmpclear(pfn_to_paddr(domain_page_map_to_mfn(vvmcs)));
-    __vmptrld(virt_to_maddr(this_cpu(current_vmcs)));
+    if ( cur )
+        __vmptrld(virt_to_maddr(cur));
+
 }
 
 u64 virtual_vmcs_vmread(void *vvmcs, u32 vmcs_encoding)
-- 
1.7.1

^ permalink raw reply related	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2014-05-09 16:30 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-05-09  4:56 [PATCH] Nested VMX: load current_vmcs only when it exists Yang Zhang
2014-05-09  5:53 ` Tian, Kevin
2014-05-09  9:40   ` Andrew Cooper
2014-05-09  9:46 ` Jan Beulich
2014-05-09 16:30   ` White, Edmund H

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.