Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 20 Feb 2005 21:08:44 GMT
From:      John-Mark Gurney <jmg@FreeBSD.org>
To:        Perforce Change Reviews <perforce@freebsd.org>
Subject:   PERFORCE change 71411 for review
Message-ID:  <200502202108.j1KL8iIG063542@repoman.freebsd.org>

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

Change 71411 by jmg@jmg_carbon on 2005/02/20 21:08:30

	we need to mask the intrrupt that we schedule, and not unmask the
	not (now) masked FAST interrupts...
	
	Pointed out by:	cognet

Affected files ...

.. //depot/projects/arm/src/sys/arm/arm/intr.c#3 edit

Differences ...

==== //depot/projects/arm/src/sys/arm/arm/intr.c#3 (text+ko) ====

@@ -139,9 +139,10 @@
 				ih->ih_handler(ih->ih_argument ?
 				    ih->ih_argument : frame);
 			}
-			arm_unmask_irqs(1 << i);
-		} else if (ih)
+		} else if (ih) {
+			arm_mask_irqs(1 << i);
 			ithread_schedule(ithd);
+		}
 	}
 	td->td_intr_nesting_level--;
 }



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