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.


mask out v8086 mode of flags register
[palacios.git] / palacios / include / palacios / vm_guest.h
index b435390..4b2728f 100644 (file)
@@ -36,6 +36,9 @@
 #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>
 struct v3_sym_core_state;
 #endif
 
+#ifdef CONFIG_INSPECTOR
+#include  <palacios/vmm_inspector.h>
+#endif
+
+
 #include <palacios/vmm_config.h>
 
 struct v3_intr_state;
@@ -125,6 +133,7 @@ struct guest_info {
 
     /* the logical cpu on which this core runs */
     uint32_t cpu_id;
+     
 };
 
 
@@ -163,18 +172,25 @@ 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;
 #endif
 
+#ifdef CONFIG_INSPECTOR
+    struct v3_inspector_state inspector;
+#endif
+
     uint64_t yield_cycle_period;