Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

sched: use SLAB for tasks allocations #242

Merged
merged 1 commit into from
Jan 22, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions common/sched.c
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@

#include <smp/smp.h>

#include <mm/vmm.h>
#include <mm/slab.h>

static list_head_t tasks;
static tid_t next_tid;
Expand Down Expand Up @@ -80,7 +80,7 @@ static inline task_state_t get_task_state(task_t *task) {
}

static task_t *create_task(void) {
task_t *task = get_free_pages(PAGE_ORDER_TASK, GFP_KERNEL);
task_t *task = kzalloc(sizeof(*task));

if (!task)
return NULL;
Expand All @@ -107,7 +107,7 @@ static void destroy_task(task_t *task) {
list_unlink(&task->list);
spin_unlock(&lock);

put_pages(task, PAGE_ORDER_TASK);
kfree(task);
}

static int prepare_task(task_t *task, const char *name, task_func_t func, void *arg) {
Expand Down