From owner-cvs-src-old@FreeBSD.ORG Wed Jun 23 19:42:15 2010 Return-Path: Delivered-To: cvs-src-old@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 9EA30106567F for ; Wed, 23 Jun 2010 19:42:15 +0000 (UTC) (envelope-from jchandra@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 8B0D08FC19 for ; Wed, 23 Jun 2010 19:42:15 +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 o5NJgF8T062038 for ; Wed, 23 Jun 2010 19:42:15 GMT (envelope-from jchandra@repoman.freebsd.org) Received: (from svn2cvs@localhost) by repoman.freebsd.org (8.14.3/8.14.3/Submit) id o5NJgFnr062037 for cvs-src-old@freebsd.org; Wed, 23 Jun 2010 19:42:15 GMT (envelope-from jchandra@repoman.freebsd.org) Message-Id: <201006231942.o5NJgFnr062037@repoman.freebsd.org> X-Authentication-Warning: repoman.freebsd.org: svn2cvs set sender to jchandra@repoman.freebsd.org using -f From: "Jayachandran C." Date: Wed, 23 Jun 2010 19:42:01 +0000 (UTC) To: cvs-src-old@freebsd.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/mips/include pte.h vm.h src/sys/mips/mips machdep.c pmap.c trap.c vm_machdep.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: Wed, 23 Jun 2010 19:42:15 -0000 jchandra 2010-06-23 19:42:01 UTC FreeBSD src repository Modified files: sys/mips/include pte.h vm.h sys/mips/mips machdep.c pmap.c trap.c vm_machdep.c Log: SVN rev 209482 on 2010-06-23 19:42:01Z by jchandra Merge jmallett@'s n64 work into HEAD - changeset 6 PTE flag cleanup from http://svn.freebsd.org/base/user/jmallett/octeon - Rename PTE_xx flags to match their MIPS names - Use the new pte_set/test/clear macros uniformly, instead of a mixture of mips_pg_xxx(), pmap_pte_x() macros and direct access. - Remove unused macros and defines from pte.h and pmap.c Discussed on freebsd-mips@ Approved by: rrs(mentor), jmallett Revision Changes Path 1.7 +47 -44 src/sys/mips/include/pte.h 1.4 +2 -4 src/sys/mips/include/vm.h 1.28 +1 -1 src/sys/mips/mips/machdep.c 1.66 +79 -87 src/sys/mips/mips/pmap.c 1.15 +9 -9 src/sys/mips/mips/trap.c 1.12 +2 -2 src/sys/mips/mips/vm_machdep.c