From 523e67fb9eb4dba7699f4cf661ffc43ea5e63a77 Mon Sep 17 00:00:00 2001 From: gallatin Date: Sun, 16 Feb 2003 19:25:04 +0000 Subject: zero the end of the memory cluster we're disposing of. Otherwise teh vm page startup code finds a 20GB cluster on this wacky alphaserver I'm working on.. MFC After: 7 days --- sys/alpha/alpha/machdep.c | 1 + 1 file changed, 1 insertion(+) diff --git a/sys/alpha/alpha/machdep.c b/sys/alpha/alpha/machdep.c index 2ce041b..614f50b 100644 --- a/sys/alpha/alpha/machdep.c +++ b/sys/alpha/alpha/machdep.c @@ -826,6 +826,7 @@ alpha_init(pfn, ptb, bim, bip, biv) size_t nsz; if (physmem - sz > Maxmem) { phys_avail[i] = 0; + phys_avail[i+1] = 0; phys_avail_cnt -= 2; physmem -= sz; } else { -- cgit v1.1