From: Robert Morris Date: Tue, 31 Aug 2010 23:21:33 +0000 (-0400) Subject: oops. last minute simplicifaction to kalloc(). X-Git-Url: https://git.devinivas.org/?a=commitdiff_plain;h=3597d5dc704c192a85b9902f7264fe9025aad277;p=cs3210-lab1.git oops. last minute simplicifaction to kalloc(). --- diff --git a/kalloc.c b/kalloc.c index 8c9ff93..43e80e8 100644 --- a/kalloc.c +++ b/kalloc.c @@ -24,10 +24,9 @@ kinit(void) extern char end[]; initlock(&kmem.lock, "kmem"); - char *p1 = (char*)PGROUNDUP((uint)end); - char *p2 = PGROUNDDOWN(PHYSTOP); - for( ; p1 < p2; p1 += 4096) - kfree(p1); + char *p = (char*)PGROUNDUP((uint)end); + for( ; p + PGSIZE - 1 < (char*) PHYSTOP; p += PGSIZE) + kfree(p); } // Free the page of physical memory pointed at by v,