From owner-cvs-src-old@FreeBSD.ORG Thu Jan 28 14:09:37 2010 Return-Path: Delivered-To: cvs-src-old@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 7A5791065672 for ; Thu, 28 Jan 2010 14:09:37 +0000 (UTC) (envelope-from rrs@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 687C88FC12 for ; Thu, 28 Jan 2010 14:09:37 +0000 (UTC) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.3/8.14.3) with ESMTP id o0SE9bIc058593 for ; Thu, 28 Jan 2010 14:09:37 GMT (envelope-from rrs@repoman.freebsd.org) Received: (from svn2cvs@localhost) by repoman.freebsd.org (8.14.3/8.14.3/Submit) id o0SE9bKf058592 for cvs-src-old@freebsd.org; Thu, 28 Jan 2010 14:09:37 GMT (envelope-from rrs@repoman.freebsd.org) Message-Id: <201001281409.o0SE9bKf058592@repoman.freebsd.org> X-Authentication-Warning: repoman.freebsd.org: svn2cvs set sender to rrs@repoman.freebsd.org using -f From: Randall Stewart Date: Thu, 28 Jan 2010 14:09:16 +0000 (UTC) To: cvs-src-old@freebsd.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/mips/mips pmap.c X-BeenThere: cvs-src-old@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: **OBSOLETE** CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 28 Jan 2010 14:09:37 -0000 rrs 2010-01-28 14:09:16 UTC FreeBSD src repository Modified files: sys/mips/mips pmap.c Log: SVN rev 203115 on 2010-01-28 14:09:16Z by rrs Fix two of the extended memory hacks. The copy pages routine in one place was setting the valid2 bit to 2 not 1. This meant the PTE was NOT valid and so you would crash. In Zero Page there was a incorrect setting of the valid bit AFTER the actual zero (opps).. Hopefully this will fix the 0xc0000000 crashes that I have been seeing (unless of course there are other problems with these old hacks of mine to get to memory above 512Meg) Revision Changes Path 1.25 +2 -2 src/sys/mips/mips/pmap.c