diff options
author | 2010-12-21 14:56:23 +0000 | |
---|---|---|
committer | 2010-12-21 14:56:23 +0000 | |
commit | 8fc84024ea0e2794e47d9aeabdf05e218961a954 (patch) | |
tree | 49f94c3a30755a3a83472af24a914f67e202400f /sys/arch/sgi/include/intr.h | |
parent | don't leak mbuf if padding failes; ok mikeb@ (diff) | |
download | wireguard-openbsd-8fc84024ea0e2794e47d9aeabdf05e218961a954.tar.xz wireguard-openbsd-8fc84024ea0e2794e47d9aeabdf05e218961a954.zip |
Convert netisr to a normal soft interrupt instead of hanving MD code
for it. This makes the netisr a real C function which will help further
development. No noticable performance change on i386 and amd64.
With input from kettenis@ and miod@ additional OKs mikeb@ and henning@
Diffstat (limited to 'sys/arch/sgi/include/intr.h')
-rw-r--r-- | sys/arch/sgi/include/intr.h | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/sys/arch/sgi/include/intr.h b/sys/arch/sgi/include/intr.h index 9b46c2bf5d1..d7cc3dc7c6e 100644 --- a/sys/arch/sgi/include/intr.h +++ b/sys/arch/sgi/include/intr.h @@ -1,4 +1,4 @@ -/* $OpenBSD: intr.h,v 1.41 2010/01/18 16:59:23 miod Exp $ */ +/* $OpenBSD: intr.h,v 1.42 2010/12/21 14:56:24 claudio Exp $ */ /* * Copyright (c) 2001-2004 Opsycon AB (www.opsycon.se / www.opsycon.com) @@ -107,11 +107,6 @@ void *softintr_establish(int, void (*)(void *), void *); void softintr_init(void); void softintr_schedule(void *); -/* XXX For legacy software interrupts. */ -extern struct soft_intrhand *softnet_intrhand; - -#define setsoftnet() softintr_schedule(softnet_intrhand) - #define splsoft() splraise(IPL_SOFTINT) #define splbio() splraise(IPL_BIO) #define splnet() splraise(IPL_NET) |