From owner-cvs-all@FreeBSD.ORG Sat Sep 11 01:31:27 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1A72716A4CF; Sat, 11 Sep 2004 01:31:27 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id ECF1343D41; Sat, 11 Sep 2004 01:31:26 +0000 (GMT) (envelope-from scottl@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i8B1VQnd076559; Sat, 11 Sep 2004 01:31:26 GMT (envelope-from scottl@repoman.freebsd.org) Received: (from scottl@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i8B1VQLd076558; Sat, 11 Sep 2004 01:31:26 GMT (envelope-from scottl) Message-Id: <200409110131.i8B1VQLd076558@repoman.freebsd.org> From: Scott Long Date: Sat, 11 Sep 2004 01:31:26 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/i386/include pmap.h src/sys/amd64/include pmap.h X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 11 Sep 2004 01:31:27 -0000 scottl 2004-09-11 01:31:26 UTC FreeBSD src repository Modified files: sys/i386/include pmap.h sys/amd64/include pmap.h Log: Double the number of kernel page tables for amd64 and for i386/PAE. The old value was only enough for 8GB of RAM, the new value can do 16GB. This still isn't optimal since it doesn't scale. Fixing this for amd64 looks to be fairly easy, but for i386 will be quite difficult. Reviewed by: peter Revision Changes Path 1.123 +2 -1 src/sys/amd64/include/pmap.h 1.113 +3 -2 src/sys/i386/include/pmap.h