From owner-cvs-src@FreeBSD.ORG Mon Nov 3 14:42:59 2003 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 4330D16A4D1; Mon, 3 Nov 2003 14:42:59 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id B635B43FBF; Mon, 3 Nov 2003 14:42:58 -0800 (PST) (envelope-from jhb@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.9/8.12.9) with ESMTP id hA3MgwXJ098745; Mon, 3 Nov 2003 14:42:58 -0800 (PST) (envelope-from jhb@repoman.freebsd.org) Received: (from jhb@localhost) by repoman.freebsd.org (8.12.9/8.12.9/Submit) id hA3MgwB3098744; Mon, 3 Nov 2003 14:42:58 -0800 (PST) (envelope-from jhb) Message-Id: <200311032242.hA3MgwB3098744@repoman.freebsd.org> From: John Baldwin Date: Mon, 3 Nov 2003 14:42:58 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/kern kern_intr.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: Mon, 03 Nov 2003 22:42:59 -0000 jhb 2003/11/03 14:42:58 PST FreeBSD src repository Modified files: sys/kern kern_intr.c Log: Don't require INTR_FAST handlers to be exclusive in the MI layer. Instead, let the MD code choose whether or not to implement such a policy. The new i386 interrupt code allows multiple FAST handlers for a given source for example. However, the code does not allow FAST and non-FAST handlers to be mixed. Revision Changes Path 1.100 +11 -7 src/sys/kern/kern_intr.c