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.


added checks for 64 bit operand decoding
[palacios.git] / palacios / include / palacios / vm_guest.h
index b435390..d67fd9f 100644 (file)
@@ -36,6 +36,7 @@
 #include <palacios/vmm_hypercall.h>
 #include <palacios/vmm_cpuid.h>
 #include <palacios/vmm_regs.h>
+#include <palacios/vmm_extensions.h>
 
 #ifdef CONFIG_TELEMETRY
 #include <palacios/vmm_telemetry.h>
@@ -125,6 +126,7 @@ struct guest_info {
 
     /* the logical cpu on which this core runs */
     uint32_t cpu_id;
+     
 };
 
 
@@ -163,13 +165,16 @@ struct v3_vm_info {
 
     v3_vm_operating_mode_t run_state;
 
+
+
+
+    struct v3_extensions extensions;
+
 #ifdef CONFIG_SYMBIOTIC
     /* Symbiotic state */
     struct v3_sym_vm_state sym_vm_state;
 #endif
 
-
-
 #ifdef CONFIG_TELEMETRY
     uint_t enable_telemetry;
     struct v3_telemetry_state telemetry;