PERFORCE change 71411 for review

John-Mark Gurney jmg at FreeBSD.org
Sun Feb 20 13:08:45 PST 2005


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

Change 71411 by jmg at 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--;
 }


More information about the p4-projects mailing list