From owner-cvs-src@FreeBSD.ORG Wed Apr 20 23:34:38 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 4953716A4CE; Wed, 20 Apr 2005 23:34:38 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1B1ED43D2F; Wed, 20 Apr 2005 23:34:38 +0000 (GMT) (envelope-from marius@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 j3KNYbPT056958; Wed, 20 Apr 2005 23:34:37 GMT (envelope-from marius@repoman.freebsd.org) Received: (from marius@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j3KNYbgt056957; Wed, 20 Apr 2005 23:34:37 GMT (envelope-from marius) Message-Id: <200504202334.j3KNYbgt056957@repoman.freebsd.org> From: Marius Strobl Date: Wed, 20 Apr 2005 23:34:37 +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/sparc64/sparc64 intr_machdep.c 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: Wed, 20 Apr 2005 23:34:38 -0000 marius 2005-04-20 23:34:37 UTC FreeBSD src repository Modified files: (Branch: RELENG_5) sys/sparc64/sparc64 intr_machdep.c Log: MFC: 1.22 Some changes to intr_execute_handlers(): - Fix NULL pointer dereferences caused when an ithread or a handler is NULL which happens when a stray interrupt triggers after the respective device interrupt was torn down. - Remove the critical section around INTR_FAST handlers which actually was a nested critical section. Both tl0_intr() and tl1_intr() already enter a critical section for calling intr_execute_handlers(). Revision Changes Path 1.19.2.2 +6 -6 src/sys/sparc64/sparc64/intr_machdep.c