Received: by mail.netbsd.org (Postfix, from userid 0) id A7EA163B10D; Mon, 29 Jun 2009 13:22:53 +0000 (UTC) Received: from cvs.netbsd.org (cvs.NetBSD.org [IPv6:2001:4f8:3:7:2e0:81ff:fe30:95bd]) by mail.netbsd.org (Postfix) with ESMTP id 2EC0263B144 for ; Mon, 29 Jun 2009 13:22:52 +0000 (UTC) Received: by cvs.netbsd.org (Postfix, from userid 500) id 19114175D0; Mon, 29 Jun 2009 13:22:52 +0000 (UTC) MIME-Version: 1.0 Content-Disposition: inline Content-Transfer-Encoding: binary Content-Type: text/plain Date: Mon, 29 Jun 2009 13:22:52 +0000 From: Izumi Tsutsui Subject: CVS commit: src/sys/arch/mips To: source-changes@NetBSD.org X-Mailer: log_accum Message-Id: <20090629132252.19114175D0@cvs.netbsd.org> Sender: source-changes-owner@NetBSD.org List-Id: source-changes Precedence: list Reply-To: source-changes-d@NetBSD.org Module Name: src Committed By: tsutsui Date: Mon Jun 29 13:22:52 UTC 2009 Modified Files: src/sys/arch/mips/include: pmap.h src/sys/arch/mips/mips: pmap.c Log Message: Since pmap.c rev 1.163, page attributes of PV_MODIFIED and PV_REFERENCED have beem moved from pv_flags in struct pv_entry to pvh_attrs in struct vm_page_md, so no need to copy pv_flags to keep these flags in pv header in pmap_remove_pv(). Pointed out by uebayasi@ on port-mips. Also rename those page attribute flags from PV_FOO to PGA_FOO like alpha. While here, make pv_flags unsigned. Briefly tested on sgimips O2. To generate a diff of this commit: cvs rdiff -u -r1.55 -r1.56 src/sys/arch/mips/include/pmap.h cvs rdiff -u -r1.182 -r1.183 src/sys/arch/mips/mips/pmap.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.