diff options
author | 2003-06-23 19:19:33 +0000 | |
---|---|---|
committer | 2003-06-23 19:19:33 +0000 | |
commit | b55f34bc94a7de9b564f512fa1698b7db04389c2 (patch) | |
tree | f7666691ed3f5bf9fb060bc8165357720666e8c4 | |
parent | this zmore no longer used (diff) | |
download | wireguard-openbsd-b55f34bc94a7de9b564f512fa1698b7db04389c2.tar.xz wireguard-openbsd-b55f34bc94a7de9b564f512fa1698b7db04389c2.zip |
Properly account for fast interrupt vectors; this was accidentally broken
since r1.10
-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); } |