diff options
author | Miod Vallat <miod@cvs.openbsd.org> | 2014-01-06 21:41:16 +0000 |
---|---|---|
committer | Miod Vallat <miod@cvs.openbsd.org> | 2014-01-06 21:41:16 +0000 |
commit | 5ac60e2fea092b84fbfb4f06d4cbf455246ff184 (patch) | |
tree | fd60920f3350ceaa7d428f93293e953a736d981c /sys | |
parent | 6dbbade48498373590a9b86c637ca5d48ad5079c (diff) |
Disable the code disabling memory beyond 1.5GB on Octane temporarily, but
hopefully for good; I believe the kernel panics with large memory fast MP
systems have been fixed in mutex.c 1.13
Diffstat (limited to 'sys')
-rw-r--r-- | sys/arch/sgi/sgi/ip30_machdep.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/arch/sgi/sgi/ip30_machdep.c b/sys/arch/sgi/sgi/ip30_machdep.c index e8ed425192f..501bbf7f3d8 100644 --- a/sys/arch/sgi/sgi/ip30_machdep.c +++ b/sys/arch/sgi/sgi/ip30_machdep.c @@ -1,4 +1,4 @@ -/* $OpenBSD: ip30_machdep.c,v 1.57 2012/10/03 11:18:23 miod Exp $ */ +/* $OpenBSD: ip30_machdep.c,v 1.58 2014/01/06 21:41:15 miod Exp $ */ /* * Copyright (c) 2008, 2009 Miodrag Vallat. @@ -134,7 +134,7 @@ ip30_setup() */ if (start < IP30_MEMORY_BASE + IP30_MEMORY_ARCBIOS_LIMIT) start = IP30_MEMORY_BASE + IP30_MEMORY_ARCBIOS_LIMIT; -#if 1 +#if 0 /* * XXX Temporarily restrict memory to 1.5GB, until the bug * XXX causing low memory corruption is found. |