From owner-cvs-all Tue Sep 12 9: 2:47 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 5C8EE37B422; Tue, 12 Sep 2000 09:02:44 -0700 (PDT) Received: (from bde@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id JAA03025; Tue, 12 Sep 2000 09:02:44 -0700 (PDT) (envelope-from bde@FreeBSD.org) Message-Id: <200009121602.JAA03025@freefall.freebsd.org> From: Bruce Evans Date: Tue, 12 Sep 2000 09:02:44 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/i386/isa ithread.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG bde 2000/09/12 09:02:44 PDT Modified files: sys/i386/isa ithread.c Log: Don't panic for delivery of a multiplexed SWI. Most SWI handlers don't take an arg, but swi_generic() is special in order to avoid one whole conditional branch in the old SWI dispatch code. The new SWI dispatch code passed it a garbage arg. Bypass swi_generic() and call swi_dispatcher() directly, like the corresponding alpha code has always done. The panic was rare because because it only occurred if more than one of the {sio,cy,rc} drivers was configured and one was active, and the cy driver doesn't even compile. Revision Changes Path 1.2 +5 -2 src/sys/i386/isa/ithread.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message