KernelVM: Expand the available VM range
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
apio 2023-01-07 12:33:00 +01:00
parent 8ee634d19b
commit fde1727218
Signed by: apio
GPG Key ID: B8A7D06E42258954

View File

@ -3,11 +3,11 @@
#include "thread/Spinlock.h"
#include <luna/Bitmap.h>
static const u64 KERNEL_VM_RANGE_START = 0xfffffffff0000000;
static const u64 KERNEL_VM_RANGE_START = 0xffffffffc0000000;
static LockedValue<Bitmap> g_kernelvm_bitmap;
static u8 bitmap_memory[4096];
static u8 bitmap_memory[4096 * 7];
static const usize KERNEL_VM_RANGE_SIZE = (sizeof(bitmap_memory) * 8) * ARCH_PAGE_SIZE;