X-Git-Url: http://v3vee.org/palacios/gitweb/gitweb.cgi?a=blobdiff_plain;f=palacios%2Fsrc%2Fpalacios%2Fvm_guest_mem.c;h=a13256b04cf2443e725038d0336e98221d48998d;hb=fd9690bf0f032246f2d2c596e2467cccc45faff6;hp=3f6be1e12563527510f96f33bedc0a9f78522960;hpb=36c1666cf64c49302d906a79d8cafbf760452d86;p=palacios.git diff --git a/palacios/src/palacios/vm_guest_mem.c b/palacios/src/palacios/vm_guest_mem.c index 3f6be1e..a13256b 100644 --- a/palacios/src/palacios/vm_guest_mem.c +++ b/palacios/src/palacios/vm_guest_mem.c @@ -63,8 +63,6 @@ int host_pa_to_host_va(addr_t host_pa, addr_t * host_va) { return 0; } - - int guest_pa_to_host_pa(struct guest_info * info, addr_t guest_pa, addr_t * host_pa) { struct v3_shadow_region * shdw_reg = v3_get_shadow_region(info->vm_info, info->cpu_id, guest_pa); @@ -74,12 +72,12 @@ int guest_pa_to_host_pa(struct guest_info * info, addr_t guest_pa, addr_t * host return -1; } - 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)); + if (shdw_reg->flags.alloced == 0) { + PrintError("In GPA->HPA: Tried to translate physical address of non allocated page (addr=%p)\n", + (void *)guest_pa); return -1; } - + *host_pa = v3_get_shadow_addr(shdw_reg, info->cpu_id, guest_pa); return 0;