summaryrefslogtreecommitdiff
path: root/vm
diff options
context:
space:
mode:
authorRichard Braun <rbraun@sceen.net>2012-12-01 15:44:12 +0100
committerJustus Winter <4winter@informatik.uni-hamburg.de>2015-08-26 16:29:35 +0200
commitc36b0ea83ca0b3937d2eee9db2741de4283a3c20 (patch)
tree21074ed5dede0d7001db2c8521bd2f9910556854 /vm
parent189236d1d363b839b859aacf7e0cbe28f422ce4a (diff)
kern/slab: remove the KMEM_CACHE_NORECLAIM flag
Don't encourage anyone to use non reclaimable pools of resources, it's a Bad Thing To Do.
Diffstat (limited to 'vm')
-rw-r--r--vm/vm_map.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/vm/vm_map.c b/vm/vm_map.c
index 5099283..0c888b6 100644
--- a/vm/vm_map.c
+++ b/vm/vm_map.c
@@ -182,10 +182,12 @@ void vm_map_init(void)
NULL, NULL, NULL, 0);
kmem_cache_init(&vm_map_entry_cache, "vm_map_entry",
sizeof(struct vm_map_entry), 0, NULL, NULL, NULL, 0);
+#if 0
kmem_cache_init(&vm_map_kentry_cache, "vm_map_kentry",
sizeof(struct vm_map_entry), 0, NULL, kentry_pagealloc,
NULL, KMEM_CACHE_NOCPUPOOL | KMEM_CACHE_NOOFFSLAB
| KMEM_CACHE_NORECLAIM);
+#endif
kmem_cache_init(&vm_map_copy_cache, "vm_map_copy",
sizeof(struct vm_map_copy), 0, NULL, NULL, NULL, 0);