summaryrefslogtreecommitdiffstats
path: root/sys/i386/isa/apic_vector.s
diff options
context:
space:
mode:
authorpeter <peter@FreeBSD.org>1997-05-31 08:59:51 +0000
committerpeter <peter@FreeBSD.org>1997-05-31 08:59:51 +0000
commit72b61693b58d7b9f6e78f631b74f869c521b9e70 (patch)
tree6eb7cf50baed30be23488d73c676dbeb92c60521 /sys/i386/isa/apic_vector.s
parentea8d17534e063b8acf1fc762fddd08b60f73f397 (diff)
downloadFreeBSD-src-72b61693b58d7b9f6e78f631b74f869c521b9e70.zip
FreeBSD-src-72b61693b58d7b9f6e78f631b74f869c521b9e70.tar.gz
The SWI_NET_MASK and SWI_TTY_MASK handlers are now back adjacent to the
top of the hardware interrupt handlers. Apparently this is slightly faster with the bit scanning instruction that looks these up - this set of changes reverts the original change. Reviewed by: bde
Diffstat (limited to 'sys/i386/isa/apic_vector.s')
-rw-r--r--sys/i386/isa/apic_vector.s10
1 files changed, 6 insertions, 4 deletions
diff --git a/sys/i386/isa/apic_vector.s b/sys/i386/isa/apic_vector.s
index 70d3dcb..0817521 100644
--- a/sys/i386/isa/apic_vector.s
+++ b/sys/i386/isa/apic_vector.s
@@ -1,6 +1,6 @@
/*
* from: vector.s, 386BSD 0.1 unknown origin
- * $Id: apic_vector.s,v 1.2 1997/05/24 17:05:26 smp Exp smp $
+ * $Id: apic_vector.s,v 1.1 1997/05/26 17:58:26 fsmp Exp $
*/
@@ -239,14 +239,16 @@ ihandlers: /* addresses of interrupt handlers */
.long Xresume12, Xresume13, Xresume14, Xresume15
.long Xresume16, Xresume17, Xresume18, Xresume19
.long Xresume20, Xresume21, Xresume22, Xresume23
- .long 0, 0, 0, 0
- .long swi_tty, swi_net, _softclock, swi_ast
+ .long swi_tty, swi_net
+ .long 0, 0, 0, 0
+ .long _softclock, swi_ast
imasks: /* masks for interrupt handlers */
.space NHWI*4 /* padding; HWI masks are elsewhere */
+ .long SWI_TTY_MASK, SWI_NET_MASK
.long 0, 0, 0, 0
- .long SWI_TTY_MASK, SWI_NET_MASK, SWI_CLOCK_MASK, SWI_AST_MASK
+ .long SWI_CLOCK_MASK, SWI_AST_MASK
.globl _ivectors
_ivectors:
OpenPOWER on IntegriCloud