diff options
author | Jason Wright <jason@cvs.openbsd.org> | 2003-05-12 00:48:53 +0000 |
---|---|---|
committer | Jason Wright <jason@cvs.openbsd.org> | 2003-05-12 00:48:53 +0000 |
commit | a0d1db887f3a0541c44c09ae5f7926a37cfaa788 (patch) | |
tree | 40e9b2def209c699a802917eed3318661b6f1686 /sys/net | |
parent | 88ce98795e60512c65517b040e879766d6bd341b (diff) |
Nuke a whole bunch of commons; ok tedu (still more to come *sigh*)
Diffstat (limited to 'sys/net')
-rw-r--r-- | sys/net/if.c | 3 | ||||
-rw-r--r-- | sys/net/netisr.h | 4 |
2 files changed, 4 insertions, 3 deletions
diff --git a/sys/net/if.c b/sys/net/if.c index 1d703fca524..053832d4504 100644 --- a/sys/net/if.c +++ b/sys/net/if.c @@ -1,4 +1,4 @@ -/* $OpenBSD: if.c,v 1.64 2002/09/11 05:38:47 itojun Exp $ */ +/* $OpenBSD: if.c,v 1.65 2003/05/12 00:48:52 jason Exp $ */ /* $NetBSD: if.c,v 1.35 1996/05/07 05:26:04 thorpej Exp $ */ /* @@ -116,6 +116,7 @@ int if_mark_ignore(struct radix_node *, void *); int if_mark_unignore(struct radix_node *, void *); int ifqmaxlen = IFQ_MAXLEN; +int netisr; void if_detached_start(struct ifnet *); int if_detached_ioctl(struct ifnet *, u_long, caddr_t); diff --git a/sys/net/netisr.h b/sys/net/netisr.h index cff6eb8026e..b85e465fb6d 100644 --- a/sys/net/netisr.h +++ b/sys/net/netisr.h @@ -1,4 +1,4 @@ -/* $OpenBSD: netisr.h,v 1.17 2002/03/14 01:27:09 millert Exp $ */ +/* $OpenBSD: netisr.h,v 1.18 2003/05/12 00:48:52 jason Exp $ */ /* $NetBSD: netisr.h,v 1.12 1995/08/12 23:59:24 mycroft Exp $ */ /* @@ -72,7 +72,7 @@ #ifndef _LOCORE #ifdef _KERNEL -int netisr; /* scheduling bits for network */ +extern int netisr; /* scheduling bits for network */ void arpintr(void); void ipintr(void); |