From owner-cvs-all@FreeBSD.ORG Fri May 30 19:30:07 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 01B1610656D9; Fri, 30 May 2008 19:30:07 +0000 (UTC) (envelope-from marius@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 093388FC24; Fri, 30 May 2008 19:30:07 +0000 (UTC) (envelope-from marius@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m4UJU6ck065802; Fri, 30 May 2008 19:30:06 GMT (envelope-from marius@repoman.freebsd.org) Received: (from marius@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m4UJU6Oi065801; Fri, 30 May 2008 19:30:06 GMT (envelope-from marius) Message-Id: <200805301930.m4UJU6Oi065801@repoman.freebsd.org> From: Marius Strobl Date: Fri, 30 May 2008 19:30:06 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_7 Cc: Subject: cvs commit: src/sys/sparc64/fhc fhc.c src/sys/sparc64/include bus_common.h intr_machdep.h src/sys/sparc64/pci psycho.c src/sys/sparc64/sbus sbus.c src/sys/sparc64/sparc64 intr_machdep.c mp_machdep.c upa.c 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: Fri, 30 May 2008 19:30:07 -0000 marius 2008-05-30 19:30:06 UTC FreeBSD src repository Modified files: (Branch: RELENG_7) sys/sparc64/fhc fhc.c sys/sparc64/include bus_common.h intr_machdep.h sys/sparc64/pci psycho.c sys/sparc64/sbus sbus.c sys/sparc64/sparc64 intr_machdep.c mp_machdep.c upa.c Log: MFC: bus_common.h 1.8; fhc.c 1.19; intr_machdep.c 1.34 (partial); intr_machdep.h 1.19 (partial); mp_machdep.c 1.40; psycho.c 1.75; sbus.c 1.47; upa.c 1.10 o Rename ic_eoi to ic_clear to emphasize the functions it points don't send and EOI which works like on amd64/i386 and blocks all interrupts on the relevant interrupt controller. o Replace the post_filter and post_inthread hooks registered when creating the interrupt events with just ic_clear as on sparc64 we don't need to do any disable->EOI->enable dance to unblock all but the relevant interrupt while running the filter or handler; just not clearing the interrupt already has the same effect. o Merge from amd64/i386: - Split the intr_table_lock into an sx lock used for most things, and a spin lock to protect intrcnt_index. - Add support for binding interrupts to CPUs and initial shuffling interrupts arround in a round-robin fashion. Revision Changes Path 1.18.2.1 +16 -3 src/sys/sparc64/fhc/fhc.c 1.7.2.2 +7 -4 src/sys/sparc64/include/bus_common.h 1.17.2.2 +5 -1 src/sys/sparc64/include/intr_machdep.h 1.70.2.5 +15 -3 src/sys/sparc64/pci/psycho.c 1.46.2.2 +16 -3 src/sys/sparc64/sbus/sbus.c 1.27.2.3 +123 -55 src/sys/sparc64/sparc64/intr_machdep.c 1.36.2.3 +3 -2 src/sys/sparc64/sparc64/mp_machdep.c 1.9.2.1 +13 -0 src/sys/sparc64/sparc64/upa.c