From owner-cvs-src-old@FreeBSD.ORG Sat Feb 27 18:45:52 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 0126F106564A for ; Sat, 27 Feb 2010 18:45:52 +0000 (UTC) (envelope-from alc@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id E43C18FC0A for ; Sat, 27 Feb 2010 18:45:51 +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 o1RIjpKa097733 for ; Sat, 27 Feb 2010 18:45:51 GMT (envelope-from alc@repoman.freebsd.org) Received: (from svn2cvs@localhost) by repoman.freebsd.org (8.14.3/8.14.3/Submit) id o1RIjpCf097732 for cvs-src-old@freebsd.org; Sat, 27 Feb 2010 18:45:51 GMT (envelope-from alc@repoman.freebsd.org) Message-Id: <201002271845.o1RIjpCf097732@repoman.freebsd.org> X-Authentication-Warning: repoman.freebsd.org: svn2cvs set sender to alc@repoman.freebsd.org using -f From: Alan Cox Date: Sat, 27 Feb 2010 18:45:32 +0000 (UTC) To: cvs-src-old@freebsd.org X-FreeBSD-CVS-Branch: RELENG_7 Subject: cvs commit: src/sys/i386/i386 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: Sat, 27 Feb 2010 18:45:52 -0000 alc 2010-02-27 18:45:32 UTC FreeBSD src repository Modified files: (Branch: RELENG_7) sys/i386/i386 pmap.c Log: SVN rev 204424 on 2010-02-27 18:45:32Z by alc MFC r203085 Optimize pmap_demote_pde() by using the new KPTmap to access a kernel page table page instead of creating a temporary mapping to it. Set the PG_G bit on the page table entries that implement the KPTmap. Locore initializes the unused portions of the NKPT kernel page table pages that it allocates to zero. So, pmap_bootstrap() needn't zero the page table entries referenced by CMAP1 and CMAP3. Simplify pmap_set_pg(). Revision Changes Path 1.594.2.28 +16 -22 src/sys/i386/i386/pmap.c