From owner-cvs-all@FreeBSD.ORG Sat Feb 26 07:23:47 2005 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1147616A4CE; Sat, 26 Feb 2005 07:23:47 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id DA1E743D31; Sat, 26 Feb 2005 07:23:46 +0000 (GMT) (envelope-from alc@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j1Q7NkGi054822; Sat, 26 Feb 2005 07:23:46 GMT (envelope-from alc@repoman.freebsd.org) Received: (from alc@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j1Q7NkF5054821; Sat, 26 Feb 2005 07:23:46 GMT (envelope-from alc) Message-Id: <200502260723.j1Q7NkF5054821@repoman.freebsd.org> From: Alan Cox Date: Sat, 26 Feb 2005 07:23:46 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_5 Subject: cvs commit: src/sys/sparc64/sparc64 pmap.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 26 Feb 2005 07:23:47 -0000 alc 2005-02-26 07:23:46 UTC FreeBSD src repository Modified files: (Branch: RELENG_5) sys/sparc64/sparc64 pmap.c Log: MFC revision 1.140 Eliminate an unnecessary call to vm_page_busy(). MFC revision 1.141 Pass VM_ALLOC_NOBUSY to vm_page_grab() so that we don't have to call vm_page_flag_clear(PG_BUSY). The object lock is held the entire time. Thus, whether or not the PG_BUSY flag is set is invisible to others. MFC revision 1.145 Acquire the source pmap's lock in pmap_copy(). Revision Changes Path 1.139.2.2 +9 -4 src/sys/sparc64/sparc64/pmap.c