aboutsummaryrefslogtreecommitdiff
path: root/sys/vm
diff options
context:
space:
mode:
Diffstat (limited to 'sys/vm')
-rw-r--r--sys/vm/vm_dynalloc.c6
-rw-r--r--sys/vm/vm_init.c4
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;