From owner-cvs-src-old@FreeBSD.ORG Wed Aug 4 14:12:34 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 20433106564A for ; Wed, 4 Aug 2010 14:12:34 +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 0C95C8FC0C for ; Wed, 4 Aug 2010 14:12:34 +0000 (UTC) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.4/8.14.4) with ESMTP id o74ECXBi099543 for ; Wed, 4 Aug 2010 14:12:33 GMT (envelope-from jchandra@repoman.freebsd.org) Received: (from svn2cvs@localhost) by repoman.freebsd.org (8.14.4/8.14.4/Submit) id o74ECXgQ099542 for cvs-src-old@freebsd.org; Wed, 4 Aug 2010 14:12:33 GMT (envelope-from jchandra@repoman.freebsd.org) Message-Id: <201008041412.o74ECXgQ099542@repoman.freebsd.org> X-Authentication-Warning: repoman.freebsd.org: svn2cvs set sender to jchandra@repoman.freebsd.org using -f From: "Jayachandran C." Date: Wed, 4 Aug 2010 14:12:09 +0000 (UTC) To: cvs-src-old@freebsd.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/mips/include param.h vmparam.h src/sys/mips/mips exception.S genassym.c pmap.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, 04 Aug 2010 14:12:34 -0000 jchandra 2010-08-04 14:12:09 UTC FreeBSD src repository Modified files: sys/mips/include param.h vmparam.h sys/mips/mips exception.S genassym.c pmap.c Log: SVN rev 210846 on 2010-08-04 14:12:09Z by jchandra Add 3 level page tables for MIPS in n64. - 32 bit compilation will still use old 2 level page tables - re-arrange pmap code so that adding another level is easier - pmap code for 3 level page tables for n64 - update TLB handler to traverse 3 levels in n64 Reviewed by: jmallett Revision Changes Path 1.16 +11 -1 src/sys/mips/include/param.h 1.10 +1 -1 src/sys/mips/include/vmparam.h 1.23 +29 -1 src/sys/mips/mips/exception.S 1.9 +1 -0 src/sys/mips/mips/genassym.c 1.71 +366 -261 src/sys/mips/mips/pmap.c