kernel: reduce log message spam during boot

This commit is contained in:
2023-04-09 17:14:19 +01:00
parent eb998860a5
commit b1b16ba19c
8 changed files with 16 additions and 30 deletions

View File

@@ -262,7 +262,6 @@ void pmap_bootstrap(void)
}
}
printk("pmap: initialising direct physical memory mappings");
vbase = VM_PAGEMAP_BASE;
for (size_t i = 0; i < pmem_limit; i += hugepage_sz) {
do_pmap_add(kernel_pmap,
@@ -272,7 +271,6 @@ void pmap_bootstrap(void)
}
pmap_switch(kernel_pmap);
printk("pmap: kernel pmap initialised (0x%llx)", kernel_pmap);
}
pmap_t pmap_create(void)