From owner-svn-src-all@FreeBSD.ORG Mon May 31 06:06:11 2010 Return-Path: Delivered-To: svn-src-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 18EC91065679; Mon, 31 May 2010 06:06:11 +0000 (UTC) (envelope-from alc@FreeBSD.org) Received: from svn.freebsd.org (unknown [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id E201A8FC1E; Mon, 31 May 2010 06:06:10 +0000 (UTC) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.3/8.14.3) with ESMTP id o4V66Afk080773; Mon, 31 May 2010 06:06:10 GMT (envelope-from alc@svn.freebsd.org) Received: (from alc@localhost) by svn.freebsd.org (8.14.3/8.14.3/Submit) id o4V66Aji080767; Mon, 31 May 2010 06:06:10 GMT (envelope-from alc@svn.freebsd.org) Message-Id: <201005310606.o4V66Aji080767@svn.freebsd.org> From: Alan Cox Date: Mon, 31 May 2010 06:06:10 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org X-SVN-Group: head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r208667 - in head/sys: amd64/amd64 i386/i386 i386/xen mips/mips sun4v/sun4v X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "SVN commit messages for the entire src tree \(except for " user" and " projects" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 31 May 2010 06:06:11 -0000 Author: alc Date: Mon May 31 06:06:10 2010 New Revision: 208667 URL: http://svn.freebsd.org/changeset/base/208667 Log: Eliminate a stale comment. Modified: head/sys/amd64/amd64/pmap.c head/sys/i386/i386/pmap.c head/sys/i386/xen/pmap.c head/sys/mips/mips/pmap.c head/sys/sun4v/sun4v/pmap.c Modified: head/sys/amd64/amd64/pmap.c ============================================================================== --- head/sys/amd64/amd64/pmap.c Mon May 31 05:35:46 2010 (r208666) +++ head/sys/amd64/amd64/pmap.c Mon May 31 06:06:10 2010 (r208667) @@ -3187,10 +3187,6 @@ pmap_enter(pmap_t pmap, vm_offset_t va, if (mpte) mpte->wire_count--; - /* - * We might be turning off write access to the page, - * so we go ahead and sense modify status. - */ if (origpte & PG_MANAGED) { om = m; pa |= PG_MANAGED; Modified: head/sys/i386/i386/pmap.c ============================================================================== --- head/sys/i386/i386/pmap.c Mon May 31 05:35:46 2010 (r208666) +++ head/sys/i386/i386/pmap.c Mon May 31 06:06:10 2010 (r208667) @@ -3323,10 +3323,6 @@ pmap_enter(pmap_t pmap, vm_offset_t va, if (mpte) mpte->wire_count--; - /* - * We might be turning off write access to the page, - * so we go ahead and sense modify status. - */ if (origpte & PG_MANAGED) { om = m; pa |= PG_MANAGED; Modified: head/sys/i386/xen/pmap.c ============================================================================== --- head/sys/i386/xen/pmap.c Mon May 31 05:35:46 2010 (r208666) +++ head/sys/i386/xen/pmap.c Mon May 31 06:06:10 2010 (r208667) @@ -2737,10 +2737,6 @@ pmap_enter(pmap_t pmap, vm_offset_t va, if (mpte) mpte->wire_count--; - /* - * We might be turning off write access to the page, - * so we go ahead and sense modify status. - */ if (origpte & PG_MANAGED) { om = m; pa |= PG_MANAGED; Modified: head/sys/mips/mips/pmap.c ============================================================================== --- head/sys/mips/mips/pmap.c Mon May 31 05:35:46 2010 (r208666) +++ head/sys/mips/mips/pmap.c Mon May 31 06:06:10 2010 (r208667) @@ -1801,10 +1801,6 @@ pmap_enter(pmap_t pmap, vm_offset_t va, if (mpte) mpte->wire_count--; - /* - * We might be turning off write access to the page, so we - * go ahead and sense modify status. - */ if (page_is_managed(opa)) { om = m; } Modified: head/sys/sun4v/sun4v/pmap.c ============================================================================== --- head/sys/sun4v/sun4v/pmap.c Mon May 31 05:35:46 2010 (r208666) +++ head/sys/sun4v/sun4v/pmap.c Mon May 31 06:06:10 2010 (r208667) @@ -1133,10 +1133,6 @@ pmap_enter(pmap_t pmap, vm_offset_t va, else if (!wired && (otte_data & VTD_WIRED)) pmap->pm_stats.wired_count--; - /* - * We might be turning off write access to the page, - * so we go ahead and sense modify status. - */ if (otte_data & VTD_MANAGED) { om = m; tte_data |= VTD_MANAGED;