#include <lunaix/spike.h>
#include <lunaix/process.h>
-#include <sys/mm/mempart.h>
+#include <asm/mempart.h>
#include <klibc/string.h>
struct mm_region* region = valloc(sizeof(struct mm_region));
*region = (struct mm_region){ .attr = attr,
.start = start,
- .end = ROUNDUP(start + length, MEM_PAGE) };
+ .end = ROUNDUP(start + length, PAGE_SIZE) };
return region;
}