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.


Move vnet to src/palacios/
[palacios.git] / palacios / src / palacios / vm_guest_mem.c
index c88ecd2..ca040f7 100644 (file)
@@ -74,8 +74,7 @@ int guest_pa_to_host_pa(struct guest_info * guest_info, addr_t guest_pa, addr_t
        return -1;
     }
     
-    if ((shdw_reg->host_type == SHDW_REGION_INVALID) ||
-       (shdw_reg->host_type == SHDW_REGION_FULL_HOOK)) {
+    if (shdw_reg->host_type == SHDW_REGION_FULL_HOOK) {
        PrintError("In GPA->HPA: Could not find address in shadow map (addr=%p) (reg_type=%s)\n", 
                   (void *)guest_pa, v3_shdw_region_type_to_str(shdw_reg->host_type));
        return -1;