From owner-cvs-src@FreeBSD.ORG Sun May 6 00:34:44 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 4E6D016A401; Sun, 6 May 2007 00:34:44 +0000 (UTC) (envelope-from alc@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id 3FD9013C45A; Sun, 6 May 2007 00:34:44 +0000 (UTC) (envelope-from alc@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.8/8.13.8) with ESMTP id l460YiDw036032; Sun, 6 May 2007 00:34:44 GMT (envelope-from alc@repoman.freebsd.org) Received: (from alc@localhost) by repoman.freebsd.org (8.13.8/8.13.8/Submit) id l460YiIA036031; Sun, 6 May 2007 00:34:44 GMT (envelope-from alc) Message-Id: <200705060034.l460YiIA036031@repoman.freebsd.org> From: Alan Cox Date: Sun, 6 May 2007 00:34:44 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_6 Cc: Subject: cvs commit: src/sys/amd64/amd64 pmap.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 06 May 2007 00:34:44 -0000 alc 2007-05-06 00:34:44 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) sys/amd64/amd64 pmap.c Log: MFC Revision 1.538: Remove stale KSE code. MFC Revision 1.551: In general, bits in the page directory entry (PDE) and the page table entry (PTE) have the same meaning. The exception to this rule is the eighth bit (0x080). It is the PS bit in a PDE and the PAT bit in a PTE. This change avoids the possibility that pmap_enter() confuses a PAT bit with a PS bit, avoiding a panic(). Eliminate a diagnostic printf() from the i386 pmap_enter() that serves no current purpose. MFC Revision 1.559: Eliminate a comment that became stale after revision 1.540. MFC Revision 1.575: Finish the PG_NX support at the pmap level. MFC Revision 1.582: Eliminate the misuse of PG_FRAME to truncate a virtual address to a virtual page boundary. Revision Changes Path 1.516.2.16 +22 -26 src/sys/amd64/amd64/pmap.c