[kernel] Move vm_space into kernel

The vm_space code should not have been in kutil, moving it to kernel.
This commit is contained in:
2020-09-13 16:11:24 -07:00
parent 9dee5e4138
commit e8564c755b
7 changed files with 12 additions and 21 deletions

View File

@@ -1,10 +1,10 @@
#include "kutil/assert.h"
#include "kutil/vm_space.h"
#include "kernel_memory.h"
#include "page_manager.h"
#include "buffer_cache.h"
#include "vm_space.h"
extern kutil::vm_space g_kernel_space;
extern vm_space g_kernel_space;
using memory::frame_size;
using memory::kernel_stack_pages;