From owner-cvs-sys Wed Jul 23 14:27:39 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.5/8.8.5) id OAA15673 for cvs-sys-outgoing; Wed, 23 Jul 1997 14:27:39 -0700 (PDT) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.5/8.8.5) with ESMTP id OAA15558; Wed, 23 Jul 1997 14:25:38 -0700 (PDT) From: Steve Passe Received: (from fsmp@localhost) by freefall.freebsd.org (8.8.6/8.8.5) id OAA19082; Wed, 23 Jul 1997 14:25:32 -0700 (PDT) Date: Wed, 23 Jul 1997 14:25:32 -0700 (PDT) Message-Id: <199707232125.OAA19082@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-sys@FreeBSD.ORG Subject: cvs commit: src/sys/i386/isa apic_ipl.s Sender: owner-cvs-sys@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk fsmp 1997/07/23 14:25:31 PDT Modified files: sys/i386/isa apic_ipl.s Log: Fixed possible deadlock from recursive INTs on same cpu. Since we use lazy masking INTREN()/INTRDIS() might be called with INTs enabled. This means another higher prio INT to the same cpu could attempt to re-enter the critical region, but would spin waiting for the lock. Since it is the owner, it would deadlock. Revision Changes Path 1.9 +9 -3 src/sys/i386/isa/apic_ipl.s