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.


Multiboot and HVM reset integrated into VMX
Peter Dinda [Thu, 18 Jun 2015 22:41:21 +0000 (17:41 -0500)]
palacios/src/palacios/vmx.c

index 23d631a..3a23032 100644 (file)
@@ -1259,6 +1259,18 @@ int v3_start_vmx_guest(struct guest_info * info) {
        }
        
        
+#ifdef V3_CONFIG_HVM
+        if (v3_handle_hvm_reset(info) > 0) {
+           continue;
+        }
+#endif
+       
+#ifdef V3_CONFIG_MULTIBOOT
+        if (v3_handle_multiboot_reset(info) > 0) {
+           continue;
+        }
+#endif
+
 #ifdef V3_CONFIG_PMU_TELEMETRY
        v3_pmu_telemetry_start(info);
 #endif