PERFORCE change 133468 for review

Scott Long scottl at FreeBSD.org
Thu Jan 17 02:08:24 PST 2008


http://perforce.freebsd.org/chv.cgi?CH=133468

Change 133468 by scottl at scottl-ix on 2008/01/17 10:08:04

	Stop stray interrupts from being fatal until their source can be
	tracked down and fixed.

Affected files ...

.. //depot/projects/xen31/sys/i386/i386/intr_machdep.c#3 edit

Differences ...

==== //depot/projects/xen31/sys/i386/i386/intr_machdep.c#3 (text+ko) ====

@@ -395,7 +395,8 @@
 	/* Schedule the ithread if needed. */
 	if (thread) {
 		error = intr_event_schedule_thread(ie);
-		KASSERT(error == 0, ("bad stray interrupt"));
+		if (error != 0)
+			log(LOG_CRIT, "bad stray interrupt %d", vector);
 	}
 	critical_exit();
 	td->td_intr_nesting_level--;


More information about the p4-projects mailing list