diff options
author | Miod Vallat <miod@cvs.openbsd.org> | 2003-06-23 19:19:34 +0000 |
---|---|---|
committer | Miod Vallat <miod@cvs.openbsd.org> | 2003-06-23 19:19:34 +0000 |
commit | 17a2aa808d85daa9aac7668fb00d37410028aab4 (patch) | |
tree | d25496a123127909de25d25c597d36035432a177 /sys/arch | |
parent | f274b125d2dde28219b158c4ec82e6bd98648f27 (diff) |
Properly account for fast interrupt vectors; this was accidentally broken
since r1.10
Diffstat (limited to 'sys/arch')
-rw-r--r-- | sys/arch/sparc/sparc/intr.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sys/arch/sparc/sparc/intr.c b/sys/arch/sparc/sparc/intr.c index cbf57ad643b..3a113756911 100644 --- a/sys/arch/sparc/sparc/intr.c +++ b/sys/arch/sparc/sparc/intr.c @@ -1,4 +1,4 @@ -/* $OpenBSD: intr.c,v 1.24 2003/06/02 23:27:55 millert Exp $ */ +/* $OpenBSD: intr.c,v 1.25 2003/06/23 19:19:33 miod Exp $ */ /* $NetBSD: intr.c,v 1.20 1997/07/29 09:42:03 fair Exp $ */ /* @@ -355,6 +355,7 @@ intr_fasttrap(level, vec) instrp = (char *)instr; for (i = 0; i < sizeof(int) * 3; i++, instrp++, tvp++) pmap_writetext(tvp, *instrp); + fastvec |= 1 << level; splx(s); } |