diff options
| -rw-r--r-- | sys/src/9/port/xalloc.c | 6 |
1 files changed, 4 insertions, 2 deletions
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 */ |
