aboutsummaryrefslogtreecommitdiff
path: root/sys/kern/init_main.c
diff options
context:
space:
mode:
authorJeff Roberson <jeff@FreeBSD.org>2013-08-07 06:21:20 +0000
committerJeff Roberson <jeff@FreeBSD.org>2013-08-07 06:21:20 +0000
commit5df87b21d3fc592f112c1721d9c2d533d4411ae4 (patch)
tree950bad07f0aeeeae78036d82b9aa11ae998c3654 /sys/kern/init_main.c
parente7b969bbeeb19c7cb6873b87b28cf58f515c9d2a (diff)
downloadsrc-5df87b21d3fc592f112c1721d9c2d533d4411ae4.tar.gz
src-5df87b21d3fc592f112c1721d9c2d533d4411ae4.zip
Replace kernel virtual address space allocation with vmem. This provides
transparent layering and better fragmentation. - Normalize functions that allocate memory to use kmem_* - Those that allocate address space are named kva_* - Those that operate on maps are named kmap_* - Implement recursive allocation handling for kmem_arena in vmem. Reviewed by: alc Tested by: pho Sponsored by: EMC / Isilon Storage Division
Notes
Notes: svn path=/head/; revision=254025
Diffstat (limited to 'sys/kern/init_main.c')
-rw-r--r--sys/kern/init_main.c5
1 files changed, 0 insertions, 5 deletions
diff --git a/sys/kern/init_main.c b/sys/kern/init_main.c
index 1eb364745a16..247e431286a3 100644
--- a/sys/kern/init_main.c
+++ b/sys/kern/init_main.c
@@ -461,11 +461,6 @@ proc0_init(void *dummy __unused)
sleepinit();
/*
- * additional VM structures
- */
- vm_init2();
-
- /*
* Create process 0 (the swapper).
*/
LIST_INSERT_HEAD(&allproc, p, p_list);