PERFORCE change 105182 for review

Paolo Pisati piso at FreeBSD.org
Sun Aug 27 17:14:30 UTC 2006


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

Change 105182 by piso at piso_newluxor on 2006/08/27 16:00:42

	error is checked only after an ithread was scheduled. 

Affected files ...

.. //depot/projects/soc2006/intr_filter/powerpc/powerpc/intr_machdep.c#11 edit

Differences ...

==== //depot/projects/soc2006/intr_filter/powerpc/powerpc/intr_machdep.c#11 (text+ko) ====

@@ -276,11 +276,11 @@
 
 	// XXX eoi & mask intr not verified.
 	/* Schedule a heavyweight interrupt process. */
-	if (thread & FILTER_SCHEDULE_THREAD)
+	if (thread & FILTER_SCHEDULE_THREAD) {
 		error = intr_event_schedule_thread(ie);
-
-	if (error == EINVAL)
-		intr_stray_handler(ppc_ih);
+		if (error == EINVAL)
+			intr_stray_handler(ppc_ih);
+	}
 }
 
 static void


More information about the p4-projects mailing list