summaryrefslogtreecommitdiff
path: root/vm/vm_setup.c
diff options
context:
space:
mode:
authorRichard Braun <rbraun@sceen.net>2013-07-09 20:53:31 +0200
committerRichard Braun <rbraun@sceen.net>2013-07-09 20:54:24 +0200
commitd485f7e4480e06003095d0f94e022dfca3c84a0d (patch)
tree6d754241ad8c180220caa83d29a86e3ce652425c /vm/vm_setup.c
parent38dad0326a0c22676e64d757223df6f97f19eac0 (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 'vm/vm_setup.c')
-rw-r--r--vm/vm_setup.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/vm/vm_setup.c b/vm/vm_setup.c
index 6d21597c..0407e048 100644
--- a/vm/vm_setup.c
+++ b/vm/vm_setup.c
@@ -20,14 +20,14 @@
#include <machine/pmap.h>
#include <vm/vm_map.h>
#include <vm/vm_kmem.h>
-#include <vm/vm_phys.h>
+#include <vm/vm_page.h>
#include <vm/vm_setup.h>
void __init
vm_setup(void)
{
vm_kmem_setup();
- vm_phys_setup();
+ vm_page_setup();
kmem_setup();
vm_map_setup();
pmap_setup();