From 1bd4c243ada35e70ff3c92e4019fb6adcc9b4bdc Mon Sep 17 00:00:00 2001 From: cinap_lenrek Date: Fri, 19 Jun 2015 02:45:58 +0200 Subject: kernel: ignore last page at the top of virtual kernel address space for xalloc() avoding kernel address -BY2PG because of end pointer wrapping to zero. --- sys/src/9/port/xalloc.c | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'sys/src/9/port/xalloc.c') diff --git a/sys/src/9/port/xalloc.c b/sys/src/9/port/xalloc.c index 6db734160..13550d4ba 100644 --- a/sys/src/9/port/xalloc.c +++ b/sys/src/9/port/xalloc.c @@ -71,8 +71,10 @@ xinit(void) /* first give to kernel */ if(n > 0){ m->kbase = (uintptr)KADDR(m->base); - m->klimit = (uintptr)KADDR(m->base+size-1)+1; - xhole(m->base, size); + m->klimit = (uintptr)m->kbase+size; + if(m->klimit == 0) + m->klimit = (uintptr)-BY2PG; + xhole(m->base, m->klimit - m->kbase); kpages -= n; } /* if anything left over, give to user */ -- cgit v1.2.3