From owner-cvs-src@FreeBSD.ORG Sat Oct 2 07:34:58 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 91C4A16A4CE; Sat, 2 Oct 2004 07:34:58 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 87AC343D5A; Sat, 2 Oct 2004 07:34:58 +0000 (GMT) (envelope-from alc@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 i927Yw7s075447; Sat, 2 Oct 2004 07:34:58 GMT (envelope-from alc@repoman.freebsd.org) Received: (from alc@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i927YwJp075446; Sat, 2 Oct 2004 07:34:58 GMT (envelope-from alc) Message-Id: <200410020734.i927YwJp075446@repoman.freebsd.org> From: Alan Cox Date: Sat, 2 Oct 2004 07:34:58 +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/alpha/alpha pmap.c src/sys/amd64/amd64 pmap.c src/sys/i386/i386 pmap.c src/sys/ia64/ia64 pmap.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 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: Sat, 02 Oct 2004 07:34:58 -0000 alc 2004-10-02 07:34:58 UTC FreeBSD src repository Modified files: sys/alpha/alpha pmap.c sys/amd64/amd64 pmap.c sys/i386/i386 pmap.c sys/ia64/ia64 pmap.c Log: Eliminate unnecessary uses of PHYS_TO_VM_PAGE() from pmap_enter(). These uses predate the change in the pmap_enter() interface that replaced the page's physical address by the address of its vm_page structure. The PHYS_TO_VM_PAGE() was being used to compute the address of the same vm_page structure that was being passed in. Revision Changes Path 1.172 +2 -5 src/sys/alpha/alpha/pmap.c 1.505 +2 -5 src/sys/amd64/amd64/pmap.c 1.510 +2 -5 src/sys/i386/i386/pmap.c 1.152 +2 -5 src/sys/ia64/ia64/pmap.c