summaryrefslogtreecommitdiff
path: root/sys/arch/vax
diff options
context:
space:
mode:
authorMichael Shalayeff <mickey@cvs.openbsd.org>2003-11-06 21:09:36 +0000
committerMichael Shalayeff <mickey@cvs.openbsd.org>2003-11-06 21:09:36 +0000
commit309b4115ecf709320a009b5d9688b01d94cebad8 (patch)
treea6e2bebcdef5e5b6587aa82f9b167e3120d78352 /sys/arch/vax
parent98fd84149f579f54527a8d3cab80987ba2a03c52 (diff)
move netisr definition into md code to allow arch provide suitable allocation; tested on most archs
Diffstat (limited to 'sys/arch/vax')
-rw-r--r--sys/arch/vax/vax/intvec.s7
1 files changed, 6 insertions, 1 deletions
diff --git a/sys/arch/vax/vax/intvec.s b/sys/arch/vax/vax/intvec.s
index 588ee96f2a8..f9f37766c09 100644
--- a/sys/arch/vax/vax/intvec.s
+++ b/sys/arch/vax/vax/intvec.s
@@ -1,4 +1,4 @@
-/* $OpenBSD: intvec.s,v 1.15 2002/04/29 19:13:24 miod Exp $ */
+/* $OpenBSD: intvec.s,v 1.16 2003/11/06 21:09:35 mickey Exp $ */
/* $NetBSD: intvec.s,v 1.39 1999/06/28 08:20:48 itojun Exp $ */
/*
@@ -281,6 +281,11 @@ ENTRY(sbiflt);
FASTINTR(softclock,softclock)
+ .data
+ .global _netisr
+_netisr:
+ .long 0 # scheduling bits for network
+
ENTRY(netint)
PUSHR
/* XXX this relies on -traditional-cpp, since we can't use _C_LABEL here */