]> Zhao Yanbai Git Server - minix.git/commitdiff
remove bogus arch_map2vir calls
authorBen Gras <ben@minix3.org>
Tue, 12 May 2009 11:36:15 +0000 (11:36 +0000)
committerBen Gras <ben@minix3.org>
Tue, 12 May 2009 11:36:15 +0000 (11:36 +0000)
servers/vm/region.c

index 34a2dfcb34cc9959110f18c66f8e4a2a7806f7f9..e327c455ac623ef6f93b10f60bbf02e48f65c203 100644 (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 ",