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.


Fixed major palacios barrier implementation error with potentially serious implicatio...
Chang Bae [Tue, 19 Feb 2013 23:55:53 +0000 (16:55 -0700)]
palacios/src/palacios/vmm_barrier.c

index 5dc1ce8..35efe0f 100644 (file)
@@ -142,7 +142,7 @@ int v3_raise_barrier(struct v3_vm_info * vm_info, struct guest_info * local_core
     int ret = 0;
 
 
-    if ((vm_info->run_state != VM_RUNNING) || 
+    if ((vm_info->run_state != VM_RUNNING) && 
        (vm_info->run_state != VM_SIMULATING)) {
        return 0;
     }
@@ -169,7 +169,7 @@ int v3_lower_barrier(struct v3_vm_info * vm_info) {
     struct v3_barrier * barrier = &(vm_info->barrier);
 
     
-    if ((vm_info->run_state != VM_RUNNING) || 
+    if ((vm_info->run_state != VM_RUNNING) && 
        (vm_info->run_state != VM_SIMULATING)) {
        return 0;
     }