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.


Refactoring and additions to direct paging (nested and passthrough)
[palacios.git] / palacios / include / palacios / vmx_ept.h
index a9dac1c..06f1f8a 100644 (file)
@@ -25,6 +25,7 @@
 
 #include <palacios/vmx_hw_info.h>
 
+
 /* The actual format of these data structures is specified as being machine 
    dependent. Thus the lengths of the base address fields are defined as variable. 
    To be safe we assume the maximum(?) size fields 
@@ -58,7 +59,6 @@ struct ept_exit_qual {
 
 
 
-
 typedef struct vmx_eptp {
     uint64_t psmt            : 3; /* (0=UC, 6=WB) */
     uint64_t pwl1            : 3; /* 1 less than EPT page-walk length (?)*/
@@ -148,8 +148,6 @@ typedef struct ept_pte {
     uint64_t ignore2         : 12;
 } __attribute__((packed)) ept_pte_t;
 
-int v3_init_ept(struct guest_info * core, struct vmx_hw_info * hw_info);
-int v3_handle_ept_fault(struct guest_info * core, addr_t fault_addr, struct ept_exit_qual * ept_qual);
 
 
 #endif