summaryrefslogtreecommitdiffstats
path: root/sys/i386/isa/ipl.s
diff options
context:
space:
mode:
authorjhb <jhb@FreeBSD.org>2000-10-05 23:09:57 +0000
committerjhb <jhb@FreeBSD.org>2000-10-05 23:09:57 +0000
commit71938e9fcdc7dcdcee180aaf1693bdfbc2f62749 (patch)
treef79e43496c9e52b9fb7344402240cb467ffe42b4 /sys/i386/isa/ipl.s
parentd3d06a3e7cf8a76f1ff2e19d172e10e60b30aed5 (diff)
downloadFreeBSD-src-71938e9fcdc7dcdcee180aaf1693bdfbc2f62749.zip
FreeBSD-src-71938e9fcdc7dcdcee180aaf1693bdfbc2f62749.tar.gz
- Heavyweight interrupt threads on the alpha for device I/O interrupts.
- Make softinterrupts (SWI's) almost completely MI, and divorce them completely from the x86 hardware interrupt code. - The ihandlers array is now gone. Instead, there is a MI shandlers array that just contains SWI handlers. - Most of the former machine/ipl.h files have moved to a new sys/ipl.h. - Stub out all the spl*() functions on all architectures. Submitted by: dfr
Diffstat (limited to 'sys/i386/isa/ipl.s')
-rw-r--r--sys/i386/isa/ipl.s18
1 files changed, 10 insertions, 8 deletions
diff --git a/sys/i386/isa/ipl.s b/sys/i386/isa/ipl.s
index 1ee9ace..9bd36cf 100644
--- a/sys/i386/isa/ipl.s
+++ b/sys/i386/isa/ipl.s
@@ -54,19 +54,19 @@
/* current priority (all off) */
.globl _tty_imask
-_tty_imask: .long SWI_TTY_MASK
+_tty_imask: .long 0
.globl _bio_imask
-_bio_imask: .long SWI_CLOCK_MASK | SWI_CAMBIO_MASK
+_bio_imask: .long 0
.globl _net_imask
-_net_imask: .long SWI_NET_MASK | SWI_CAMNET_MASK
+_net_imask: .long 0
.globl _cam_imask
-_cam_imask: .long SWI_CAMBIO_MASK | SWI_CAMNET_MASK
+_cam_imask: .long 0
.globl _soft_imask
-_soft_imask: .long SWI_MASK
+_soft_imask: .long 0
.globl _softnet_imask
-_softnet_imask: .long SWI_NET_MASK
+_softnet_imask: .long 0
.globl _softtty_imask
-_softtty_imask: .long SWI_TTY_MASK
+_softtty_imask: .long 0
/* pending software interrupts */
.globl _spending
@@ -173,7 +173,9 @@ doreti_ast:
jmp doreti_next
ALIGN_TEXT
-swi_net:
+ .globl _swi_net
+ .type _swi_net,@function
+_swi_net:
MCOUNT
bsfl _netisr,%eax
je swi_net_done
OpenPOWER on IntegriCloud