From owner-cvs-all@FreeBSD.ORG Thu Dec 8 18:33:38 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org 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 671E216A423; Thu, 8 Dec 2005 18:33:38 +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 3C2B443D6A; Thu, 8 Dec 2005 18:33:33 +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 jB8IXVZA006190; Thu, 8 Dec 2005 18:33:31 GMT (envelope-from jhb@repoman.freebsd.org) Received: (from jhb@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id jB8IXVWF006189; Thu, 8 Dec 2005 18:33:31 GMT (envelope-from jhb) Message-Id: <200512081833.jB8IXVWF006189@repoman.freebsd.org> From: John Baldwin Date: Thu, 8 Dec 2005 18:33:30 +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/amd64/amd64 apic_vector.S db_trace.c intr_machdep.c local_apic.c mp_machdep.c src/sys/amd64/include apicvar.h asmacros.h frame.h intr_machdep.h smp.h src/sys/amd64/isa atpic.c atpic_vector.S icu.h X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 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: Thu, 08 Dec 2005 18:33:38 -0000 jhb 2005-12-08 18:33:30 UTC FreeBSD src repository Modified files: sys/amd64/amd64 apic_vector.S db_trace.c intr_machdep.c local_apic.c mp_machdep.c sys/amd64/include apicvar.h asmacros.h frame.h intr_machdep.h smp.h sys/amd64/isa atpic.c atpic_vector.S icu.h Log: MFi386: - Move PUSH_FRAME and POP_FRAME to asmacros.h and use PUSH_FRAME in atpic entry points. - Move PCPU_* asm macros out of the middle of the asm profiling macros. - Pass IRQ vector argument as an int rather than void * to reduce diffs with i386. - EOI the lapic in C for the lapic timer handler. - GC unused Xcpuast function. - Split IPI_STOP handling code of ipi_nmi_handler() out into a cpustop_handler() function and call it from Xcpustop rather than duplicating all the logic in assembly. - Fixup the list of symbols with interrupt frames in ddb traces. Xatpic_fastintr* have never existed on amd64, and the lapic timer handler and various IPI handlers were missing. - Use trapframe instead of intrframe for interrupt entry points (on amd64 the interrupt vector was already a separate argument, so the two frames were already identical) and GC intrframe. Submitted by: peter (3) Revision Changes Path 1.106 +3 -102 src/sys/amd64/amd64/apic_vector.S 1.71 +5 -2 src/sys/amd64/amd64/db_trace.c 1.18 +4 -4 src/sys/amd64/amd64/intr_machdep.c 1.20 +7 -5 src/sys/amd64/amd64/local_apic.c 1.266 +16 -6 src/sys/amd64/amd64/mp_machdep.c 1.15 +1 -1 src/sys/amd64/include/apicvar.h 1.29 +54 -6 src/sys/amd64/include/asmacros.h 1.29 +0 -30 src/sys/amd64/include/frame.h 1.8 +2 -2 src/sys/amd64/include/intr_machdep.h 1.86 +1 -0 src/sys/amd64/include/smp.h 1.18 +5 -7 src/sys/amd64/isa/atpic.c 1.46 +2 -20 src/sys/amd64/isa/atpic_vector.S 1.35 +1 -1 src/sys/amd64/isa/icu.h