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.


typo fix
Jack Lange [Sat, 28 Jul 2012 20:23:57 +0000 (16:23 -0400)]
palacios/src/palacios/vmm.c

index 1d8cd07..ba4a8b0 100644 (file)
@@ -457,7 +457,7 @@ int v3_move_vm_core(struct v3_vm_info * vm, int vcore_id, int target_cpu) {
 
 int v3_stop_vm(struct v3_vm_info * vm) {
 
-    if ((vm->run_state |= VM_RUNNING) && 
+    if ((vm->run_state != VM_RUNNING) && 
        (vm->run_state != VM_SIMULATING)) {
        PrintError("Tried to stop VM in invalid runstate (%d)\n", vm->run_state);
        return -1;