NUMA: only print a short summary at boot time

This commit is contained in:
Balazs Gerofi
2017-07-19 09:11:44 +09:00
parent 51ed8dce06
commit dd9675d65e
2 changed files with 17 additions and 6 deletions

View File

@@ -2067,7 +2067,8 @@ void *map_fixed_area(unsigned long phys, unsigned long size, int uncachable)
attr |= PTATTR_UNCACHABLE;
}
kprintf("map_fixed: %lx => %p (%d pages)\n", paligned, v, npages);
kprintf("map_fixed: phys: 0x%lx => 0x%lx (%d pages)\n",
paligned, v, npages);
for (i = 0; i < npages; i++) {
if(__set_pt_page(init_pt, (void *)fixed_virt, paligned, attr)){