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.


working paged real mode
[palacios.git] / palacios / include / geekos / vmm.h
index 181155f..3b80c46 100644 (file)
@@ -8,6 +8,7 @@
 #include <geekos/vmm_mem.h>
 #include <geekos/vmm_paging.h>
 
+#include <geekos/vm_guest.h>
 
 /* utility definitions */
 #define PrintDebug(fmt, args...)                       \
 
 
 
-typedef struct guest_info {
-  ullong_t rip;
-  ullong_t rsp;
-
-  vmm_mem_list_t mem_list;
-  vmm_mem_layout_t mem_layout;
-  // device_map
-
-  pml4e64_t * page_tables;
-  void * vmm_data;
-} guest_info_t;