Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 2 Jan 2007 13:31:10 GMT
From:      Olivier Houchard <cognet@FreeBSD.org>
To:        Perforce Change Reviews <perforce@freebsd.org>
Subject:   PERFORCE change 112421 for review
Message-ID:  <200701021331.l02DVAJi044336@repoman.freebsd.org>

next in thread | raw e-mail | index | archive | help
http://perforce.freebsd.org/chv.cgi?CH=112421

Change 112421 by cognet@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



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200701021331.l02DVAJi044336>