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.


Convert shadow paging to use 32 PAE (Remove 32 Bit Restrictions)
[palacios.git] / palacios / src / palacios / vmm_symspy.c
index 148cbcb..58f8aed 100644 (file)
@@ -117,7 +117,7 @@ static int symspy_msr_write(struct guest_info * core, uint_t msr, struct v3_msr
 
 int v3_init_symspy_vm(struct v3_vm_info * vm, struct v3_symspy_global_state * state) {
 
-    state->global_page_pa = (addr_t)V3_AllocShadowSafePages(vm, 1);
+    state->global_page_pa = (addr_t)V3_AllocPages(1);
     if (!state->global_page_pa) { 
        PrintError(vm, VCORE_NONE, "Cannot allocate page\n");
        return -1;
@@ -137,7 +137,7 @@ int v3_init_symspy_vm(struct v3_vm_info * vm, struct v3_symspy_global_state * st
 
 
 int v3_init_symspy_core(struct guest_info * core, struct v3_symspy_local_state * state) {
-    state->local_page_pa = (addr_t)V3_AllocShadowSafePages(core->vm_info, 1);
+    state->local_page_pa = (addr_t)V3_AllocPages(1);
 
     if (!state->local_page_pa) { 
        PrintError(core->vm_info, core, "Cannot allocate page\n");