View | Details | Raw Unified | Return to bug 27866
Collapse All | Expand All

(-)interrupt.c (-1 / +1 lines)
Lines 434-440 Link Here
434
	 * that this means that any fast interrupt handler must be MP safe.
434
	 * that this means that any fast interrupt handler must be MP safe.
435
	 */
435
	 */
436
	ih = TAILQ_FIRST(&ithd->it_handlers);
436
	ih = TAILQ_FIRST(&ithd->it_handlers);
437
	if ((ih->ih_flags & INTR_FAST) != 0) {
437
	if ((ih->ih_flags & IH_FAST) != 0) {
438
		ih->ih_handler(ih->ih_argument);
438
		ih->ih_handler(ih->ih_argument);
439
		return;
439
		return;
440
	}
440
	}

Return to bug 27866