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.


Revised check for already-launched VM
Kyle Hale [Sat, 7 Jul 2012 23:39:09 +0000 (18:39 -0500)]
palacios/src/palacios/vmm.c

index 21ca408..e9a3a9d 100644 (file)
@@ -256,9 +256,7 @@ int v3_start_vm(struct v3_vm_info * vm, unsigned int cpu_mask) {
     int vcore_id = 0;
 
 
-    if (vm->run_state == VM_RUNNING ||
-        vm->run_state == VM_INVALID ||
-        vm->run_state == VM_ERROR) {
+    if (vm->run_state != VM_STOPPED) {
         PrintError("VM has already been launched (state=%d)\n", (int)vm->run_state);
         return -1;
     }