From owner-cvs-src@FreeBSD.ORG Tue Sep 2 21:14:10 2008 Return-Path: Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 2832D106568F; Tue, 2 Sep 2008 21:14:10 +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 150DF8FC13; Tue, 2 Sep 2008 21:14:10 +0000 (UTC) (envelope-from marius@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.2/8.14.2) with ESMTP id m82LE9nm074250; Tue, 2 Sep 2008 21:14:09 GMT (envelope-from marius@repoman.freebsd.org) Received: (from svn2cvs@localhost) by repoman.freebsd.org (8.14.3/8.14.1/Submit) id m82LE9sE074249; Tue, 2 Sep 2008 21:14:09 GMT (envelope-from marius@repoman.freebsd.org) Message-Id: <200809022114.m82LE9sE074249@repoman.freebsd.org> X-Authentication-Warning: repoman.freebsd.org: svn2cvs set sender to marius@repoman.freebsd.org using -f From: Marius Strobl Date: Tue, 2 Sep 2008 21:13:54 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sys/sparc64/include cache.h pcpu.h src/sys/sparc64/sparc64 cache.c cheetah.c genassym.c machdep.c mp_exception.S mp_machdep.c spitfire.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 02 Sep 2008 21:14:10 -0000 marius 2008-09-02 21:13:54 UTC FreeBSD src repository Modified files: sys/sparc64/include cache.h pcpu.h sys/sparc64/sparc64 cache.c cheetah.c genassym.c machdep.c mp_exception.S mp_machdep.c spitfire.c Log: SVN rev 182689 on 2008-09-02 21:13:54Z by marius - USIII-based machines can consist of CPUs having different cache sizes (and running at different frequencies) so move the cacheinfo to the PCPU data. While at it, remove some redundant and/or unused members from struct cacheinfo. - In sparc64_init don't assume the first CPU node we find in the OFW device tree is the BSP. Revision Changes Path 1.15 +3 -13 src/sys/sparc64/include/cache.h 1.25 +2 -0 src/sys/sparc64/include/pcpu.h 1.22 +28 -21 src/sys/sparc64/sparc64/cache.c 1.8 +1 -1 src/sys/sparc64/sparc64/cheetah.c 1.71 +2 -1 src/sys/sparc64/sparc64/genassym.c 1.143 +34 -19 src/sys/sparc64/sparc64/machdep.c 1.14 +5 -8 src/sys/sparc64/sparc64/mp_exception.S 1.43 +2 -0 src/sys/sparc64/sparc64/mp_machdep.c 1.8 +8 -4 src/sys/sparc64/sparc64/spitfire.c