From owner-cvs-src-old@FreeBSD.ORG Tue Jul 13 15:29:59 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 EF5B61065670 for ; Tue, 13 Jul 2010 15:29:59 +0000 (UTC) (envelope-from imp@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id DD9478FC1B for ; Tue, 13 Jul 2010 15:29:59 +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 o6DFTxkA060623 for ; Tue, 13 Jul 2010 15:29:59 GMT (envelope-from imp@repoman.freebsd.org) Received: (from svn2cvs@localhost) by repoman.freebsd.org (8.14.3/8.14.3/Submit) id o6DFTxDM060622 for cvs-src-old@freebsd.org; Tue, 13 Jul 2010 15:29:59 GMT (envelope-from imp@repoman.freebsd.org) Message-Id: <201007131529.o6DFTxDM060622@repoman.freebsd.org> X-Authentication-Warning: repoman.freebsd.org: svn2cvs set sender to imp@repoman.freebsd.org using -f From: Warner Losh Date: Tue, 13 Jul 2010 15:29:37 +0000 (UTC) To: cvs-src-old@freebsd.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/mips/include cpu.h md_var.h src/sys/mips/mips cpu.c locore.S 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: Tue, 13 Jul 2010 15:30:00 -0000 imp 2010-07-13 15:29:37 UTC FreeBSD src repository Modified files: sys/mips/include cpu.h md_var.h sys/mips/mips cpu.c locore.S Log: SVN rev 209996 on 2010-07-13 15:29:37Z by imp cpu_id and fpu_id are unused, except to be set early in the boot code. The problem with setting it there is that the last CPU to come up wins, it seems. This also removes one more ifdef in locore.S, a noble goal too. Since they are unused, and pollute cpu.h, remove them. Submitted by: bde.h (cpu.h pollution) Approved in theory by: jmallet@ Revision Changes Path 1.13 +0 -9 src/sys/mips/include/cpu.h 1.5 +0 -1 src/sys/mips/include/md_var.h 1.7 +4 -5 src/sys/mips/mips/cpu.c 1.10 +0 -19 src/sys/mips/mips/locore.S