PERFORCE change 112421 for review

Olivier Houchard cognet at FreeBSD.org
Tue Jan 2 05:31:11 PST 2007


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

Change 112421 by cognet at hulglah on 2007/01/02 13:30:59

	Re-enable the interrupt source once we ran the interrupt handler.
	I believe this should be done once we're sure all the interrupt handlers
	
	for the said interrupt have runned, but I'm not sure how to detect
	this.

Affected files ...

.. //depot/projects/soc2006/intr_filter/kern/kern_intr.c#21 edit

Differences ...

==== //depot/projects/soc2006/intr_filter/kern/kern_intr.c#21 (text+ko) ====

@@ -690,6 +690,8 @@
 	ih->ih_handler(ih->ih_argument);
 	if (!(ih->ih_flags & IH_MPSAFE))
 		mtx_unlock(&Giant);
+	if (ie->ie_enable)
+		ie->ie_enable(ie->ie_source);
 }
 
 static void


More information about the p4-projects mailing list