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.


fixed gpa->hpa error checking
Jack Lange [Fri, 27 Mar 2009 00:07:06 +0000 (19:07 -0500)]
palacios/src/palacios/vm_guest_mem.c

index b17dd76..8455dd6 100644 (file)
@@ -68,8 +68,6 @@ int host_pa_to_host_va(addr_t host_pa, addr_t * host_va) {
 int guest_pa_to_host_pa(struct guest_info * guest_info, addr_t guest_pa, addr_t * host_pa) {
     struct v3_shadow_region * shdw_reg = v3_get_shadow_region(guest_info, guest_pa);
 
-    *host_pa = v3_get_shadow_addr(shdw_reg, guest_pa);
-
     if ((shdw_reg == NULL) ||
        (shdw_reg->host_type == SHDW_REGION_INVALID) ||
        (shdw_reg->host_type == SHDW_REGION_FULL_HOOK)){
@@ -78,6 +76,8 @@ int guest_pa_to_host_pa(struct guest_info * guest_info, addr_t guest_pa, addr_t
        return -1;
     }
 
+    *host_pa = v3_get_shadow_addr(shdw_reg, guest_pa);
+
     return 0;
 }