From c91469dfa41f697f52471f5889d528fd3f8a4f4c Mon Sep 17 00:00:00 2001 From: Samuel Thibault Date: Mon, 5 Sep 2011 03:04:12 +0200 Subject: Drop module memory free verbosity * kern/bootstrap.c (bootstrap_create): Do not show freed module memory. --- kern/bootstrap.c | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/kern/bootstrap.c b/kern/bootstrap.c index 7819553f..2c63df40 100644 --- a/kern/bootstrap.c +++ b/kern/bootstrap.c @@ -266,10 +266,8 @@ void bootstrap_create() } /* XXX we could free the memory used by the boot loader's descriptors and such. */ - for (n = 0; n < boot_info.mods_count; n++) { - printf("freeing %dMiB\n", (bmods[n].mod_end - bmods[n].mod_start) >> 20); + for (n = 0; n < boot_info.mods_count; n++) vm_page_create(bmods[n].mod_start, bmods[n].mod_end); - } } static void -- cgit v1.2.3