From owner-cvs-all@FreeBSD.ORG Tue Nov 23 22:11:53 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6B96616A4CE; Tue, 23 Nov 2004 22:11:53 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 47F4243D41; Tue, 23 Nov 2004 22:11:53 +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 iANMBrP0076781; Tue, 23 Nov 2004 22:11:53 GMT (envelope-from jhb@repoman.freebsd.org) Received: (from jhb@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id iANMBrcw076780; Tue, 23 Nov 2004 22:11:53 GMT (envelope-from jhb) Message-Id: <200411232211.iANMBrcw076780@repoman.freebsd.org> From: John Baldwin Date: Tue, 23 Nov 2004 22:11:53 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/alpha/alpha interrupt.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 23 Nov 2004 22:11:53 -0000 jhb 2004-11-23 22:11:53 UTC FreeBSD src repository Modified files: sys/alpha/alpha interrupt.c Log: Fix a cpuid mismatch from the recent cpuid rototill in Alpha: boot_cpu_id is a PAL ID, while PCPU_GET(cpuid) is a FreeBSD CPU ID. The FreeBSD CPU ID of the BSP is always zero, so use that to see which CPU should run the full clock functions. Revision Changes Path 1.83 +1 -1 src/sys/alpha/alpha/interrupt.c