From owner-freebsd-alpha Thu Feb 24 13: 4:22 2000 Delivered-To: freebsd-alpha@freebsd.org Received: from duke.cs.duke.edu (duke.cs.duke.edu [152.3.140.1]) by hub.freebsd.org (Postfix) with ESMTP id B511537B9C2 for ; Thu, 24 Feb 2000 13:04:19 -0800 (PST) (envelope-from gallatin@cs.duke.edu) Received: from grasshopper.cs.duke.edu (grasshopper.cs.duke.edu [152.3.145.30]) by duke.cs.duke.edu (8.9.3/8.9.3) with ESMTP id QAA14128; Thu, 24 Feb 2000 16:04:04 -0500 (EST) Received: (from gallatin@localhost) by grasshopper.cs.duke.edu (8.9.3/8.9.1) id QAA49666; Thu, 24 Feb 2000 16:03:33 -0500 (EST) (envelope-from gallatin@cs.duke.edu) From: Andrew Gallatin MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Date: Thu, 24 Feb 2000 16:03:33 -0500 (EST) To: Vladimir Kravchuk Cc: Doug Rabson , freebsd-alpha@FreeBSD.ORG Subject: Re: UP2000/DP264 In-Reply-To: <38B4C617.3E8379D6@smr.ru> References: <38B29B22.146AC359@smr.ru> <14514.39904.938273.513133@grasshopper.cs.duke.edu> <38B4C617.3E8379D6@smr.ru> X-Mailer: VM 6.43 under 20.4 "Emerald" XEmacs Lucid Message-ID: <14517.39997.734455.74296@grasshopper.cs.duke.edu> Sender: owner-freebsd-alpha@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org I have an idea why you might be seeing only 1GB. Can you please apply the appended patch to /usr/src/sys/alpha/alpha/pmap.c, rebuild your kernel & see if it helps? Drew ------------------------------------------------------------------------------ Andrew Gallatin, Sr Systems Programmer http://www.cs.duke.edu/~gallatin Duke University Email: gallatin@cs.duke.edu Department of Computer Science Phone: (919) 660-6590 Index: sys/alpha/alpha/pmap.c =================================================================== RCS file: /home/ncvs/src/sys/alpha/alpha/pmap.c,v retrieving revision 1.34 diff -u -r1.34 pmap.c --- pmap.c 1999/11/19 21:34:50 1.34 +++ pmap.c 2000/02/24 21:00:15 @@ -172,6 +172,7 @@ #include #include +#include #ifndef PMAP_SHPGPERPROC #define PMAP_SHPGPERPROC 200 @@ -606,19 +607,13 @@ int pmap_uses_prom_console() { -#if 0 - extern int cputype; -#if defined(NEW_SCC_DRIVER) - return (cputype == ST_DEC_21000); -#else + int cputype; + + cputype = hwrpb->rpb_type; return (cputype == ST_DEC_21000 || cputype == ST_DEC_3000_300 || cputype == ST_DEC_3000_500); -#endif /* NEW_SCC_DRIVER */ -#endif - - return 1; } /* To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-alpha" in the body of the message