summaryrefslogtreecommitdiff
path: root/kern/task.c
diff options
context:
space:
mode:
authorRichard Braun <rbraun@sceen.net>2014-12-10 21:52:40 +0100
committerJustus Winter <4winter@informatik.uni-hamburg.de>2015-08-26 16:29:35 +0200
commit7960290a67c945b6133b6e680a9bd2c241adfae4 (patch)
tree29d5a94d51fa0c0b4ad043cdedf609489d8d2db4 /kern/task.c
parente8988e0845f2fe888df9bc94b2640a3fd82b6678 (diff)
kern/slab: directmap update
The main impact of the direct physical mapping on the kmem module is the slab size computation. The page allocator requires the allocation size to be a power-of-two above the page size since it uses the buddy memory allocation algorithm. Custom slab allocation functions are no longer needed since the only user was the kentry area, which has been removed recently. The KMEM_CACHE_NOCPUPOOL flag is also no longer needed since CPU pools, which are allocated from a kmem cache, can now always be allocated out of the direct physical mapping.
Diffstat (limited to 'kern/task.c')
-rw-r--r--kern/task.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/kern/task.c b/kern/task.c
index 3b91de2..66f86e9 100644
--- a/kern/task.c
+++ b/kern/task.c
@@ -62,8 +62,10 @@ ipc_port_t new_task_notification = NULL;
void task_init(void)
{
- kmem_cache_init(&task_cache, "task", sizeof(struct task), 0,
- NULL, NULL, NULL, 0);
+ kmem_cache_init (&task_cache,
+ "task",
+ sizeof(struct task), 0,
+ NULL, 0);
eml_init();
machine_task_module_init ();