From owner-cvs-src@FreeBSD.ORG Mon Dec 5 22:25:41 2005 Return-Path: X-Original-To: cvs-src@FreeBSD.org 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 7BF5816A41F; Mon, 5 Dec 2005 22:25:41 +0000 (GMT) (envelope-from jhb@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 442D743D6A; Mon, 5 Dec 2005 22:25:41 +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 jB5MPf0p063183; Mon, 5 Dec 2005 22:25:41 GMT (envelope-from jhb@repoman.freebsd.org) Received: (from jhb@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id jB5MPfLb063182; Mon, 5 Dec 2005 22:25:41 GMT (envelope-from jhb) Message-Id: <200512052225.jB5MPfLb063182@repoman.freebsd.org> From: John Baldwin Date: Mon, 5 Dec 2005 22:25:41 +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/i386/i386 apic_vector.s local_apic.c mp_machdep.c pmap.c src/sys/i386/include smp.h 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: Mon, 05 Dec 2005 22:25:41 -0000 jhb 2005-12-05 22:25:41 UTC FreeBSD src repository Modified files: sys/i386/i386 apic_vector.s local_apic.c mp_machdep.c pmap.c sys/i386/include smp.h Log: - Move the code to deal with handling an IPI_STOP IPI out of ipi_nmi_handler() and into a new cpustop_handler() function. Change the Xcpustop IPI_STOP handler to call this function instead of duplicating all the same logic in assembly. - EOI the local APIC for the lapic timer interrupt in C rather than assembly. - Bump the lazypmap IPI counter if COUNT_IPIS is defined in C rather than assembly. Revision Changes Path 1.109 +2 -43 src/sys/i386/i386/apic_vector.s 1.21 +4 -0 src/sys/i386/i386/local_apic.c 1.260 +16 -6 src/sys/i386/i386/mp_machdep.c 1.543 +4 -0 src/sys/i386/i386/pmap.c 1.85 +8 -0 src/sys/i386/include/smp.h