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.


disable XSETBV, etc instructions for hardware compatibility
Jack Lange [Wed, 13 Apr 2011 05:29:23 +0000 (00:29 -0500)]
palacios/src/palacios/vmm_cpuid.c

index ab3e91b..ce7c244 100644 (file)
@@ -39,6 +39,10 @@ void v3_init_cpuid_map(struct v3_vm_info * vm) {
 
     // Setup default cpuid entries
 
+
+    // Disable XSAVE (cpuid 0x01, ECX bit 26)
+    v3_cpuid_add_fields(vm, 0x01, 0, 0, 0, 0, (1 << 26), 0, 0, 0);
+
 }