From owner-cvs-src@FreeBSD.ORG Fri Jan 7 20:07:42 2005 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9934C16A4CE; Fri, 7 Jan 2005 20:07:42 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8641743D39; Fri, 7 Jan 2005 20:07:42 +0000 (GMT) (envelope-from jhb@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j07K7g9P060389; Fri, 7 Jan 2005 20:07:42 GMT (envelope-from jhb@repoman.freebsd.org) Received: (from jhb@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j07K7goP060388; Fri, 7 Jan 2005 20:07:42 GMT (envelope-from jhb) Message-Id: <200501072007.j07K7goP060388@repoman.freebsd.org> From: John Baldwin Date: Fri, 7 Jan 2005 20:07:42 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_5 Subject: cvs commit: src/sys/alpha/alpha interrupt.c machdep.c mp_machdep.c src/sys/alpha/include pcpu.h smp.h X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 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: Fri, 07 Jan 2005 20:07:42 -0000 jhb 2005-01-07 20:07:42 UTC FreeBSD src repository Modified files: (Branch: RELENG_5) sys/alpha/alpha interrupt.c machdep.c mp_machdep.c sys/alpha/include pcpu.h smp.h Log: MFC more standard CPU ID support for Alpha: - Add a new MD per-CPU field for Alpha 'pal_id' which is the PAL ID associated with each processor. This ID is inferred from the index of the pcs structure in the hwprb. - Give Alpha CPUs FreeBSD CPU IDs more like other architectures where the boot processor is always CPU 0 and the other processors are numbered 1 ... N. List active CPUs in the system in cpu_mp_announce() as well. Revision Changes Path 1.82.2.1 +1 -1 src/sys/alpha/alpha/interrupt.c 1.222.2.3 +2 -1 src/sys/alpha/alpha/machdep.c 1.52.2.1 +50 -39 src/sys/alpha/alpha/mp_machdep.c 1.14.8.1 +1 -0 src/sys/alpha/include/pcpu.h 1.6.8.1 +2 -2 src/sys/alpha/include/smp.h