diff options
author | Ian Moffett <ian@osmora.org> | 2023-12-13 14:31:07 -0500 |
---|---|---|
committer | Ian Moffett <ian@osmora.org> | 2023-12-13 14:31:34 -0500 |
commit | 496862183a101a9aceaeff968441fd2ad0bbbd7d (patch) | |
tree | ad018937a158fd0f4185a2df205d7d9134336eea /sys/vm | |
parent | 88e9b3b3a6060ab1035e0576519e18bb64edda09 (diff) |
kernel: vm: `cpu_vm_ctx' -> `vm_ctx'
This commit cleans up the naming of the `cpu_vm_ctx' as it already
implies it is per core
Signed-off-by: Ian Moffett <ian@osmora.org>
Diffstat (limited to 'sys/vm')
-rw-r--r-- | sys/vm/vm_dynalloc.c | 6 | ||||
-rw-r--r-- | sys/vm/vm_init.c | 4 |
2 files changed, 5 insertions, 5 deletions
diff --git a/sys/vm/vm_dynalloc.c b/sys/vm/vm_dynalloc.c index d43372b..e7acd19 100644 --- a/sys/vm/vm_dynalloc.c +++ b/sys/vm/vm_dynalloc.c @@ -39,7 +39,7 @@ void * dynalloc(size_t sz) { /* TODO: Per CPU */ - struct cpu_vm_ctx vm_ctx = vm_get_bsp_ctx(); + struct vm_ctx vm_ctx = vm_get_bsp_ctx(); return tlsf_malloc(vm_ctx.tlsf_ctx, sz); } @@ -54,7 +54,7 @@ void * dynrealloc(void *old_ptr, size_t newsize) { /* TODO: Per CPU */ - struct cpu_vm_ctx vm_ctx = vm_get_bsp_ctx(); + struct vm_ctx vm_ctx = vm_get_bsp_ctx(); return tlsf_realloc(vm_ctx.tlsf_ctx, old_ptr, newsize); } @@ -68,7 +68,7 @@ void dynfree(void *ptr) { /* TODO: Per CPU */ - struct cpu_vm_ctx vm_ctx = vm_get_bsp_ctx(); + struct vm_ctx vm_ctx = vm_get_bsp_ctx(); tlsf_free(vm_ctx.tlsf_ctx, ptr); } diff --git a/sys/vm/vm_init.c b/sys/vm/vm_init.c index c298a6a..8fe12d3 100644 --- a/sys/vm/vm_init.c +++ b/sys/vm/vm_init.c @@ -46,14 +46,14 @@ static volatile struct vas kernel_vas; * TODO: Move this to a per CPU structure, this kinda sucks * how it is right now... */ -static volatile struct cpu_vm_ctx bsp_vm_ctx = {0}; +static volatile struct vm_ctx bsp_vm_ctx = {0}; volatile struct limine_hhdm_request g_hhdm_request = { .id = LIMINE_HHDM_REQUEST, .revision = 0 }; -struct cpu_vm_ctx +struct vm_ctx vm_get_bsp_ctx(void) { return bsp_vm_ctx; |