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.


fixes to the emulator to handle nested paging
[palacios.git] / palacios / src / palacios / vmm_mem.c
index 38eb602..c244793 100644 (file)
@@ -264,7 +264,7 @@ addr_t v3_get_shadow_addr(struct v3_shadow_region * reg, addr_t guest_addr) {
         (reg->host_type != SHDW_REGION_INVALID) ) {
        return (guest_addr - reg->guest_start) + reg->host_addr;
     } else {
-       PrintError("MEM Region Invalid\n");
+       PrintDebug("MEM Region Invalid\n");
        return 0;
     }
 }