diff options
author | Richard Braun <rbraun@sceen.net> | 2013-07-09 20:53:31 +0200 |
---|---|---|
committer | Richard Braun <rbraun@sceen.net> | 2013-07-09 20:54:24 +0200 |
commit | d485f7e4480e06003095d0f94e022dfca3c84a0d (patch) | |
tree | 6d754241ad8c180220caa83d29a86e3ce652425c /arch/x86/machine/boot.c | |
parent | 38dad0326a0c22676e64d757223df6f97f19eac0 (diff) |
vm/vm_phys: merge into the vm_page module
The original idea was to separate physical page allocation from page list
management, but it doesn't make much sense any more.
Diffstat (limited to 'arch/x86/machine/boot.c')
-rw-r--r-- | arch/x86/machine/boot.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/arch/x86/machine/boot.c b/arch/x86/machine/boot.c index 9f6f4b05..692db0ad 100644 --- a/arch/x86/machine/boot.c +++ b/arch/x86/machine/boot.c @@ -65,7 +65,6 @@ #include <machine/trap.h> #include <vm/vm_kmem.h> #include <vm/vm_page.h> -#include <vm/vm_phys.h> #include <vm/vm_setup.h> /* @@ -278,7 +277,7 @@ boot_main(void) vm_setup(); boot_save_data(); biosmem_free_usable(); - vm_phys_info(); + vm_page_info(); pic_setup(); pit_setup(); cpu_mp_setup(); |