From owner-cvs-src-old@FreeBSD.ORG Fri Apr 30 15:23:03 2010 Return-Path: Delivered-To: cvs-src-old@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 74BB01065676 for ; Fri, 30 Apr 2010 15:23:03 +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 642D18FC08 for ; Fri, 30 Apr 2010 15:23:03 +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 o3UFN3pW020423 for ; Fri, 30 Apr 2010 15:23:03 GMT (envelope-from alc@repoman.freebsd.org) Received: (from svn2cvs@localhost) by repoman.freebsd.org (8.14.3/8.14.3/Submit) id o3UFN3Pm020422 for cvs-src-old@freebsd.org; Fri, 30 Apr 2010 15:23:03 GMT (envelope-from alc@repoman.freebsd.org) Message-Id: <201004301523.o3UFN3Pm020422@repoman.freebsd.org> X-Authentication-Warning: repoman.freebsd.org: svn2cvs set sender to alc@repoman.freebsd.org using -f From: Alan Cox Date: Fri, 30 Apr 2010 15:22:52 +0000 (UTC) To: cvs-src-old@freebsd.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/powerpc/booke 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: Fri, 30 Apr 2010 15:23:03 -0000 alc 2010-04-30 15:22:52 UTC FreeBSD src repository Modified files: sys/powerpc/booke pmap.c Log: SVN rev 207437 on 2010-04-30 15:22:52Z by alc MFamd64/i386 r207205 Clearing a page table entry's accessed bit and setting the page's PG_REFERENCED flag in pmap_protect() can't really be justified, so don't do it. Additionally, two changes that make this pmap behave like the others do: Change pmap_protect() such that it calls vm_page_dirty() only if the page is managed. Change pmap_remove_write() such that it doesn't clear a page table entry's accessed bit. Revision Changes Path 1.25 +3 -13 src/sys/powerpc/booke/pmap.c