From 7da240d003c6ddcaf7045749164c01c8330b1868 Mon Sep 17 00:00:00 2001 From: Matthew Dillon Date: Wed, 29 Mar 2000 09:07:47 +0000 Subject: [PATCH] This should fix the lockups people have been experiencing. I muffed up giving astpending two flag bits. A cmpl $0 had to turn into a bit test. Many thanks to: Alain Thivillon --- sys/i386/isa/ipl.s | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sys/i386/isa/ipl.s b/sys/i386/isa/ipl.s index d4c0a0e762a8..b5ab589733f7 100644 --- a/sys/i386/isa/ipl.s +++ b/sys/i386/isa/ipl.s @@ -126,7 +126,7 @@ doreti_next2: decb _intr_nesting_level /* Check for ASTs that can be handled now. */ - cmpl $0,_astpending + testl $AST_PENDING,_astpending je doreti_exit testb $SEL_RPL_MASK,TF_CS(%esp) jne doreti_ast