From 7a95ffd83908f20fbaf47ecf76013ae2e8e8caa8 Mon Sep 17 00:00:00 2001 From: mjacob Date: Mon, 4 Jun 2001 00:52:09 +0000 Subject: Use correct flag in test whether this interrupt handler is fast or not. PR: 27866 Submitted by: Peter Jeremy --- sys/alpha/alpha/interrupt.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'sys/alpha') diff --git a/sys/alpha/alpha/interrupt.c b/sys/alpha/alpha/interrupt.c index 18b69ad..d82601e 100644 --- a/sys/alpha/alpha/interrupt.c +++ b/sys/alpha/alpha/interrupt.c @@ -434,7 +434,7 @@ alpha_dispatch_intr(void *frame, unsigned long vector) * that this means that any fast interrupt handler must be MP safe. */ ih = TAILQ_FIRST(&ithd->it_handlers); - if ((ih->ih_flags & INTR_FAST) != 0) { + if ((ih->ih_flags & IH_FAST) != 0) { ih->ih_handler(ih->ih_argument); return; } -- cgit v1.1