diff options
author | Michael Shalayeff <mickey@cvs.openbsd.org> | 2003-11-06 21:09:36 +0000 |
---|---|---|
committer | Michael Shalayeff <mickey@cvs.openbsd.org> | 2003-11-06 21:09:36 +0000 |
commit | 309b4115ecf709320a009b5d9688b01d94cebad8 (patch) | |
tree | a6e2bebcdef5e5b6587aa82f9b167e3120d78352 /sys/arch/sparc64 | |
parent | 98fd84149f579f54527a8d3cab80987ba2a03c52 (diff) |
move netisr definition into md code to allow arch provide suitable allocation; tested on most archs
Diffstat (limited to 'sys/arch/sparc64')
-rw-r--r-- | sys/arch/sparc64/sparc64/intr.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/sys/arch/sparc64/sparc64/intr.c b/sys/arch/sparc64/sparc64/intr.c index 5c3e2ad1d98..72d0edb6b1c 100644 --- a/sys/arch/sparc64/sparc64/intr.c +++ b/sys/arch/sparc64/sparc64/intr.c @@ -1,4 +1,4 @@ -/* $OpenBSD: intr.c,v 1.18 2003/10/01 06:01:55 cloder Exp $ */ +/* $OpenBSD: intr.c,v 1.19 2003/11/06 21:09:35 mickey Exp $ */ /* $NetBSD: intr.c,v 1.39 2001/07/19 23:38:11 eeh Exp $ */ /* @@ -138,6 +138,8 @@ softintr(fp) return (1); } +int netisr; + int softnet(fp) void *fp; |