From owner-cvs-src-old@FreeBSD.ORG Sun Jun 28 22:43:13 2009 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 EED2F106564A for ; Sun, 28 Jun 2009 22:43:13 +0000 (UTC) (envelope-from marius@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id DBAEC8FC08 for ; Sun, 28 Jun 2009 22:43:13 +0000 (UTC) (envelope-from marius@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.3/8.14.3) with ESMTP id n5SMhDXl001918 for ; Sun, 28 Jun 2009 22:43:13 GMT (envelope-from marius@repoman.freebsd.org) Received: (from svn2cvs@localhost) by repoman.freebsd.org (8.14.3/8.14.3/Submit) id n5SMhDa9001917 for cvs-src-old@freebsd.org; Sun, 28 Jun 2009 22:43:13 GMT (envelope-from marius@repoman.freebsd.org) Message-Id: <200906282243.n5SMhDa9001917@repoman.freebsd.org> X-Authentication-Warning: repoman.freebsd.org: svn2cvs set sender to marius@repoman.freebsd.org using -f From: Marius Strobl Date: Sun, 28 Jun 2009 22:42:51 +0000 (UTC) To: cvs-src-old@freebsd.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/sparc64/include pmap.h src/sys/sparc64/sparc64 machdep.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: Sun, 28 Jun 2009 22:43:14 -0000 marius 2009-06-28 22:42:51 UTC FreeBSD src repository Modified files: sys/sparc64/include pmap.h sys/sparc64/sparc64 machdep.c pmap.c Log: SVN rev 195149 on 2009-06-28 22:42:51Z by marius - Work around the broken loader behavior of not demapping no longer used kernel TLB slots when unloading the kernel or modules, which results in havoc when loading a kernel and modules which take up less TLB slots afterwards as the unused but locked ones aren't accounted for in virtual_avail. Eventually this should be fixed in the loader which isn't straight forward though and the kernel should be robust against this anyway. [1] - Ensure that the addresses allocated directly from phys_avail[] by pmap_bootstrap_alloc() are always colored properly. This implicit assumption was broken in r194784 as unlike the other consumers the DPCPU area allocated for the BSP isn't a multiple of PAGE_SIZE * DCACHE_COLORS. [2] - Remove the no longer used global msgbuf_phys. - Remove the redundant ekva parameter of pmap_bootstrap_alloc(). - Correct some outdated function names in ktr(9) invocations. Requested by: jhb [1] Reported by: gavin [2] Approved by: re (kib) MFC after: 2 weeks Revision Changes Path 1.48 +1 -3 src/sys/sparc64/include/pmap.h 1.155 +20 -9 src/sys/sparc64/sparc64/machdep.c 1.181 +17 -17 src/sys/sparc64/sparc64/pmap.c