diff options
author | 2013-03-28 23:10:05 +0000 | |
---|---|---|
committer | 2013-03-28 23:10:05 +0000 | |
commit | 638c25e3b539eff2e509df6c105c6da47cdad18d (patch) | |
tree | ecf8f3bcfca6548197f1a69bddf17971afe13b56 /sys/netinet | |
parent | Add missing locking in i915_gem_retire_work_handler() and call (diff) | |
download | wireguard-openbsd-638c25e3b539eff2e509df6c105c6da47cdad18d.tar.xz wireguard-openbsd-638c25e3b539eff2e509df6c105c6da47cdad18d.zip |
code that calls timeout functions should include timeout.h
slipped by on i386, but the zaurus doesn't automagically pick it up.
spotted by patrick
Diffstat (limited to 'sys/netinet')
-rw-r--r-- | sys/netinet/if_ether.c | 3 | ||||
-rw-r--r-- | sys/netinet/ip_carp.c | 3 | ||||
-rw-r--r-- | sys/netinet/ip_ipsp.c | 3 | ||||
-rw-r--r-- | sys/netinet/ip_spd.c | 3 | ||||
-rw-r--r-- | sys/netinet/ipsec_input.c | 3 | ||||
-rw-r--r-- | sys/netinet/ipsec_output.c | 3 | ||||
-rw-r--r-- | sys/netinet/tcp_input.c | 3 | ||||
-rw-r--r-- | sys/netinet/tcp_subr.c | 3 |
8 files changed, 16 insertions, 8 deletions
diff --git a/sys/netinet/if_ether.c b/sys/netinet/if_ether.c index a892ea42a87..d2cd803b7b5 100644 --- a/sys/netinet/if_ether.c +++ b/sys/netinet/if_ether.c @@ -1,4 +1,4 @@ -/* $OpenBSD: if_ether.c,v 1.100 2013/03/28 16:45:16 tedu Exp $ */ +/* $OpenBSD: if_ether.c,v 1.101 2013/03/28 23:10:05 tedu Exp $ */ /* $NetBSD: if_ether.c,v 1.31 1996/05/11 12:59:58 mycroft Exp $ */ /* @@ -47,6 +47,7 @@ #include <sys/systm.h> #include <sys/mbuf.h> #include <sys/socket.h> +#include <sys/timeout.h> #include <sys/kernel.h> #include <sys/syslog.h> diff --git a/sys/netinet/ip_carp.c b/sys/netinet/ip_carp.c index 6bfcb546eeb..084914f107d 100644 --- a/sys/netinet/ip_carp.c +++ b/sys/netinet/ip_carp.c @@ -1,4 +1,4 @@ -/* $OpenBSD: ip_carp.c,v 1.203 2013/03/28 16:55:27 deraadt Exp $ */ +/* $OpenBSD: ip_carp.c,v 1.204 2013/03/28 23:10:05 tedu Exp $ */ /* * Copyright (c) 2002 Michael Shalayeff. All rights reserved. @@ -41,6 +41,7 @@ #include <sys/mbuf.h> #include <sys/socket.h> #include <sys/socketvar.h> +#include <sys/timeout.h> #include <sys/ioctl.h> #include <sys/errno.h> #include <sys/device.h> diff --git a/sys/netinet/ip_ipsp.c b/sys/netinet/ip_ipsp.c index 2af6ba12a9a..6f42981ffa4 100644 --- a/sys/netinet/ip_ipsp.c +++ b/sys/netinet/ip_ipsp.c @@ -1,4 +1,4 @@ -/* $OpenBSD: ip_ipsp.c,v 1.185 2012/09/20 10:25:03 blambert Exp $ */ +/* $OpenBSD: ip_ipsp.c,v 1.186 2013/03/28 23:10:05 tedu Exp $ */ /* * The authors of this code are John Ioannidis (ji@tla.org), * Angelos D. Keromytis (kermit@csd.uch.gr), @@ -46,6 +46,7 @@ #include <sys/kernel.h> #include <sys/proc.h> #include <sys/sysctl.h> +#include <sys/timeout.h> #include <net/if.h> #include <net/route.h> diff --git a/sys/netinet/ip_spd.c b/sys/netinet/ip_spd.c index fecc8af3a75..5e87d708a8e 100644 --- a/sys/netinet/ip_spd.c +++ b/sys/netinet/ip_spd.c @@ -1,4 +1,4 @@ -/* $OpenBSD: ip_spd.c,v 1.64 2012/07/16 18:05:36 markus Exp $ */ +/* $OpenBSD: ip_spd.c,v 1.65 2013/03/28 23:10:06 tedu Exp $ */ /* * The author of this code is Angelos D. Keromytis (angelos@cis.upenn.edu) * @@ -28,6 +28,7 @@ #include <sys/socketvar.h> #include <sys/protosw.h> #include <sys/pool.h> +#include <sys/timeout.h> #include <net/if.h> #include <net/route.h> diff --git a/sys/netinet/ipsec_input.c b/sys/netinet/ipsec_input.c index c5e0c104ad6..8614f1212df 100644 --- a/sys/netinet/ipsec_input.c +++ b/sys/netinet/ipsec_input.c @@ -1,4 +1,4 @@ -/* $OpenBSD: ipsec_input.c,v 1.109 2013/03/28 16:45:16 tedu Exp $ */ +/* $OpenBSD: ipsec_input.c,v 1.110 2013/03/28 23:10:06 tedu Exp $ */ /* * The authors of this code are John Ioannidis (ji@tla.org), * Angelos D. Keromytis (kermit@csd.uch.gr) and @@ -44,6 +44,7 @@ #include <sys/socket.h> #include <sys/sysctl.h> #include <sys/kernel.h> +#include <sys/timeout.h> #include <net/if.h> #include <net/netisr.h> diff --git a/sys/netinet/ipsec_output.c b/sys/netinet/ipsec_output.c index bc225cf4767..4b7183c9493 100644 --- a/sys/netinet/ipsec_output.c +++ b/sys/netinet/ipsec_output.c @@ -1,4 +1,4 @@ -/* $OpenBSD: ipsec_output.c,v 1.46 2012/09/20 10:25:03 blambert Exp $ */ +/* $OpenBSD: ipsec_output.c,v 1.47 2013/03/28 23:10:06 tedu Exp $ */ /* * The author of this code is Angelos D. Keromytis (angelos@cis.upenn.edu) * @@ -27,6 +27,7 @@ #include <sys/mbuf.h> #include <sys/socket.h> #include <sys/kernel.h> +#include <sys/timeout.h> #include <net/if.h> #include <net/route.h> diff --git a/sys/netinet/tcp_input.c b/sys/netinet/tcp_input.c index 639e995ddc8..2bd8a50609f 100644 --- a/sys/netinet/tcp_input.c +++ b/sys/netinet/tcp_input.c @@ -1,4 +1,4 @@ -/* $OpenBSD: tcp_input.c,v 1.256 2013/03/14 11:18:37 mpi Exp $ */ +/* $OpenBSD: tcp_input.c,v 1.257 2013/03/28 23:10:06 tedu Exp $ */ /* $NetBSD: tcp_input.c,v 1.23 1996/02/13 23:43:44 christos Exp $ */ /* @@ -74,6 +74,7 @@ #include <sys/protosw.h> #include <sys/socket.h> #include <sys/socketvar.h> +#include <sys/timeout.h> #include <sys/kernel.h> #include <sys/pool.h> diff --git a/sys/netinet/tcp_subr.c b/sys/netinet/tcp_subr.c index e517f5dbc2e..285a510e9e4 100644 --- a/sys/netinet/tcp_subr.c +++ b/sys/netinet/tcp_subr.c @@ -1,4 +1,4 @@ -/* $OpenBSD: tcp_subr.c,v 1.115 2013/03/28 16:45:16 tedu Exp $ */ +/* $OpenBSD: tcp_subr.c,v 1.116 2013/03/28 23:10:06 tedu Exp $ */ /* $NetBSD: tcp_subr.c,v 1.22 1996/02/13 23:44:00 christos Exp $ */ /* @@ -73,6 +73,7 @@ #include <sys/mbuf.h> #include <sys/socket.h> #include <sys/socketvar.h> +#include <sys/timeout.h> #include <sys/protosw.h> #include <sys/kernel.h> #include <sys/pool.h> |