From 72b61693b58d7b9f6e78f631b74f869c521b9e70 Mon Sep 17 00:00:00 2001 From: peter Date: Sat, 31 May 1997 08:59:51 +0000 Subject: 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 --- sys/i386/isa/apic_vector.s | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) (limited to 'sys/i386/isa/apic_vector.s') 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: -- cgit v1.1