remove bogus arch_map2vir calls

This commit is contained in:
Ben Gras 2009-05-12 11:36:15 +00:00
parent 6fad23f500
commit f9e81cb57b

View File

@ -60,10 +60,9 @@ struct vmproc *vmp;
for(vr = vmp->vm_regions; vr; vr = vr->next) {
struct phys_region *ph;
int nph = 0;
printf("\t0x%lx - 0x%lx (len 0x%lx), proc 0x%lx-0x%lx: %s\n",
printf("\t0x%lx - 0x%lx (len 0x%lx), %s\n",
vr->vaddr, vr->vaddr + vr->length, vr->length,
arch_map2vir(vmp, vr->vaddr),
arch_map2vir(vmp, vr->vaddr + vr->length), map_name(vr));
vr->vaddr + vr->length, map_name(vr));
printf("\t\tphysical: ");
for(ph = vr->first; ph; ph = ph->next) {
printf("0x%lx-0x%lx (refs %d): phys 0x%lx ",