Palacios Public Git Repository

To checkout Palacios execute

  git clone http://v3vee.org/palacios/palacios.web/palacios.git
This will give you the master branch. You probably want the devel branch or one of the release branches. To switch to the devel branch, simply execute
  cd palacios
  git checkout --track -b devel origin/devel
The other branches are similar.


Merge branch 'devel' of ssh://palacios@newskysaw.cs.northwestern.edu/home/palacios...
Patrick Bridges [Thu, 9 Jun 2011 16:50:42 +0000 (10:50 -0600)]
1  2 
palacios/src/palacios/svm.c
palacios/src/palacios/vmx.c

Simple merge
@@@ -748,16 -749,15 +749,15 @@@ int v3_vmx_enter(struct guest_info * in
      // disable global interrupts for vm state transition
      v3_disable_ints();
  
 +    // Update timer devices prior to entering VM.  Doing it here 
 +    // makes sure the guest sees any timers that fired while it 
 +    // was in the VMM
 +    v3_update_timers(info);
  
-     if (active_vmcs_ptrs[V3_Get_CPU()] != vmx_info->vmcs_ptr_phys) {
+     if (vmcs_store() != vmx_info->vmcs_ptr_phys) {
        vmcs_load(vmx_info->vmcs_ptr_phys);
-       active_vmcs_ptrs[V3_Get_CPU()] = vmx_info->vmcs_ptr_phys;
      }
  
 -
      v3_vmx_restore_vmcs(info);