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-07-26 12:14:40 +0200
commit8002f6bac17e68ec131d9361dded3e9ca9022047 (patch)
tree14a974293c9637ab3324976ab8867fdc9f50459e /vm
parent3a4a01e93287a1d52809efdcf512562e77067147 (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 ae3ce21..4977bff 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);