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_mem.c
index 1553b14..b205ea1 100644 (file)
@@ -176,8 +176,7 @@ int v3_init_mem_map(struct v3_vm_info * vm) {
        region->host_addr = (addr_t)V3_AllocPagesExtended(block_pages,
                                                          PAGE_SIZE_4KB,
                                                          node_id,
-                                                         will_use_shadow_paging(vm) ? 
-                                                         V3_ALLOC_PAGES_CONSTRAINT_4GB : 0 ); 
+                                                         0); // no constraints 
                                                             
         if ((void *)region->host_addr == NULL) { 
             PrintError(vm, VCORE_NONE, "Could not allocate guest memory\n");