summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorbrad <brad@openbsd.org>2006-06-17 17:56:10 +0000
committerbrad <brad@openbsd.org>2006-06-17 17:56:10 +0000
commit06a9f16d21e1b1b06de958c64186f46fd77c8bf6 (patch)
tree7c721035e8e334a50f1096463a69dfb33eb5fc71
parentWe do not have the xf and xb commands. (diff)
downloadwireguard-openbsd-06a9f16d21e1b1b06de958c64186f46fd77c8bf6.tar.xz
wireguard-openbsd-06a9f16d21e1b1b06de958c64186f46fd77c8bf6.zip
add sys/timeout.h
-rw-r--r--sys/dev/cardbus/if_fxp_cardbus.c3
-rw-r--r--sys/dev/cardbus/if_re_cardbus.c3
-rw-r--r--sys/dev/cardbus/if_rl_cardbus.c3
-rw-r--r--sys/dev/eisa/if_ep_eisa.c3
-rw-r--r--sys/dev/ic/elink3.c3
-rw-r--r--sys/dev/ic/re.c3
-rw-r--r--sys/dev/ic/smc91cxx.c3
-rw-r--r--sys/dev/isa/if_ep_isa.c3
-rw-r--r--sys/dev/isa/if_ep_isapnp.c3
-rw-r--r--sys/dev/isa/if_sm_isa.c3
-rw-r--r--sys/dev/pci/if_bge.c3
-rw-r--r--sys/dev/pci/if_dc_pci.c3
-rw-r--r--sys/dev/pci/if_ep_pci.c3
-rw-r--r--sys/dev/pci/if_fxp_pci.c3
-rw-r--r--sys/dev/pci/if_nfe.c3
-rw-r--r--sys/dev/pci/if_re_pci.c3
-rw-r--r--sys/dev/pci/if_sk.c3
-rw-r--r--sys/dev/pci/if_vge.c3
-rw-r--r--sys/dev/pci/if_vr.c3
-rw-r--r--sys/dev/pcmcia/if_ep_pcmcia.c3
-rw-r--r--sys/dev/pcmcia/if_sm_pcmcia.c3
21 files changed, 42 insertions, 21 deletions
diff --git a/sys/dev/cardbus/if_fxp_cardbus.c b/sys/dev/cardbus/if_fxp_cardbus.c
index 3a927fa4088..99e30e25450 100644
--- a/sys/dev/cardbus/if_fxp_cardbus.c
+++ b/sys/dev/cardbus/if_fxp_cardbus.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: if_fxp_cardbus.c,v 1.15 2006/06/08 05:43:01 fkr Exp $ */
+/* $OpenBSD: if_fxp_cardbus.c,v 1.16 2006/06/17 17:58:17 brad Exp $ */
/* $NetBSD: if_fxp_cardbus.c,v 1.12 2000/05/08 18:23:36 thorpej Exp $ */
/*
@@ -51,6 +51,7 @@
#include <sys/errno.h>
#include <sys/malloc.h>
#include <sys/kernel.h>
+#include <sys/timeout.h>
#include <sys/device.h>
#include <net/if.h>
diff --git a/sys/dev/cardbus/if_re_cardbus.c b/sys/dev/cardbus/if_re_cardbus.c
index 93b4cd0e8e8..f2dcad57024 100644
--- a/sys/dev/cardbus/if_re_cardbus.c
+++ b/sys/dev/cardbus/if_re_cardbus.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: if_re_cardbus.c,v 1.3 2006/05/22 20:35:12 krw Exp $ */
+/* $OpenBSD: if_re_cardbus.c,v 1.4 2006/06/17 17:58:17 brad Exp $ */
/*
* Copyright (c) 2005 Peter Valchev <pvalchev@openbsd.org>
@@ -28,6 +28,7 @@
#include <sys/malloc.h>
#include <sys/kernel.h>
#include <sys/device.h>
+#include <sys/timeout.h>
#include <sys/socket.h>
#include <net/if.h>
diff --git a/sys/dev/cardbus/if_rl_cardbus.c b/sys/dev/cardbus/if_rl_cardbus.c
index 25bd1abb3f5..7a7aa77919a 100644
--- a/sys/dev/cardbus/if_rl_cardbus.c
+++ b/sys/dev/cardbus/if_rl_cardbus.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: if_rl_cardbus.c,v 1.11 2006/05/29 01:00:24 pvalchev Exp $ */
+/* $OpenBSD: if_rl_cardbus.c,v 1.12 2006/06/17 17:58:17 brad Exp $ */
/* $NetBSD: if_rl_cardbus.c,v 1.3.8.3 2001/11/14 19:14:02 nathanw Exp $ */
/*
@@ -46,6 +46,7 @@
#include <sys/errno.h>
#include <sys/malloc.h>
#include <sys/kernel.h>
+#include <sys/timeout.h>
#include <sys/device.h>
#include <net/if.h>
diff --git a/sys/dev/eisa/if_ep_eisa.c b/sys/dev/eisa/if_ep_eisa.c
index 55315b13c8e..8c7daef1316 100644
--- a/sys/dev/eisa/if_ep_eisa.c
+++ b/sys/dev/eisa/if_ep_eisa.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: if_ep_eisa.c,v 1.21 2006/05/30 21:44:07 miod Exp $ */
+/* $OpenBSD: if_ep_eisa.c,v 1.22 2006/06/17 17:58:39 brad Exp $ */
/* $NetBSD: if_ep_eisa.c,v 1.13 1997/04/18 00:50:33 cgd Exp $ */
/*
@@ -42,6 +42,7 @@
#include <sys/errno.h>
#include <sys/syslog.h>
#include <sys/selinfo.h>
+#include <sys/timeout.h>
#include <sys/device.h>
#include <net/if.h>
diff --git a/sys/dev/ic/elink3.c b/sys/dev/ic/elink3.c
index f21dd9a2e87..8a812bc47b2 100644
--- a/sys/dev/ic/elink3.c
+++ b/sys/dev/ic/elink3.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: elink3.c,v 1.67 2006/03/25 22:41:42 djm Exp $ */
+/* $OpenBSD: elink3.c,v 1.68 2006/06/17 17:56:10 brad Exp $ */
/* $NetBSD: elink3.c,v 1.32 1997/05/14 00:22:00 thorpej Exp $ */
/*
@@ -42,6 +42,7 @@
#include <sys/errno.h>
#include <sys/syslog.h>
#include <sys/selinfo.h>
+#include <sys/timeout.h>
#include <sys/device.h>
#include <net/if.h>
diff --git a/sys/dev/ic/re.c b/sys/dev/ic/re.c
index 9ed0f42a94b..e420dde9a66 100644
--- a/sys/dev/ic/re.c
+++ b/sys/dev/ic/re.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: re.c,v 1.25 2006/06/05 23:44:07 drahn Exp $ */
+/* $OpenBSD: re.c,v 1.26 2006/06/17 17:56:10 brad Exp $ */
/* $FreeBSD: if_re.c,v 1.31 2004/09/04 07:54:05 ru Exp $ */
/*
* Copyright (c) 1997, 1998-2003
@@ -118,6 +118,7 @@
#include <sys/malloc.h>
#include <sys/kernel.h>
#include <sys/device.h>
+#include <sys/timeout.h>
#include <sys/socket.h>
#include <net/if.h>
diff --git a/sys/dev/ic/smc91cxx.c b/sys/dev/ic/smc91cxx.c
index 75a428bae0e..df65a19d538 100644
--- a/sys/dev/ic/smc91cxx.c
+++ b/sys/dev/ic/smc91cxx.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: smc91cxx.c,v 1.24 2006/03/25 22:41:43 djm Exp $ */
+/* $OpenBSD: smc91cxx.c,v 1.25 2006/06/17 17:56:10 brad Exp $ */
/* $NetBSD: smc91cxx.c,v 1.11 1998/08/08 23:51:41 mycroft Exp $ */
/*-
@@ -86,6 +86,7 @@
#include <sys/syslog.h>
#include <sys/socket.h>
#include <sys/device.h>
+#include <sys/timeout.h>
#include <sys/kernel.h>
#include <sys/malloc.h>
#include <sys/ioctl.h>
diff --git a/sys/dev/isa/if_ep_isa.c b/sys/dev/isa/if_ep_isa.c
index b47f468b294..ef3c898257a 100644
--- a/sys/dev/isa/if_ep_isa.c
+++ b/sys/dev/isa/if_ep_isa.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: if_ep_isa.c,v 1.23 2005/11/21 18:16:40 millert Exp $ */
+/* $OpenBSD: if_ep_isa.c,v 1.24 2006/06/17 17:57:00 brad Exp $ */
/* $NetBSD: if_ep_isa.c,v 1.5 1996/05/12 23:52:36 mycroft Exp $ */
/*
@@ -46,6 +46,7 @@
#include <sys/errno.h>
#include <sys/syslog.h>
#include <sys/selinfo.h>
+#include <sys/timeout.h>
#include <sys/device.h>
#include <sys/queue.h>
diff --git a/sys/dev/isa/if_ep_isapnp.c b/sys/dev/isa/if_ep_isapnp.c
index bf03d7e625a..2a2013c08d3 100644
--- a/sys/dev/isa/if_ep_isapnp.c
+++ b/sys/dev/isa/if_ep_isapnp.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: if_ep_isapnp.c,v 1.9 2005/11/21 18:16:40 millert Exp $ */
+/* $OpenBSD: if_ep_isapnp.c,v 1.10 2006/06/17 17:57:00 brad Exp $ */
/* $NetBSD: if_ep_isapnp.c,v 1.5 1996/05/12 23:52:36 mycroft Exp $ */
/*
@@ -47,6 +47,7 @@
#include <sys/syslog.h>
#include <sys/selinfo.h>
#include <sys/device.h>
+#include <sys/timeout.h>
#include <sys/queue.h>
#include <net/if.h>
diff --git a/sys/dev/isa/if_sm_isa.c b/sys/dev/isa/if_sm_isa.c
index 6521c613021..530408bf8bd 100644
--- a/sys/dev/isa/if_sm_isa.c
+++ b/sys/dev/isa/if_sm_isa.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: if_sm_isa.c,v 1.8 2006/02/24 01:50:31 brad Exp $ */
+/* $OpenBSD: if_sm_isa.c,v 1.9 2006/06/17 17:57:00 brad Exp $ */
/* $NetBSD: if_sm_isa.c,v 1.4 1998/07/05 06:49:14 jonathan Exp $ */
/*-
@@ -48,6 +48,7 @@
#include <sys/errno.h>
#include <sys/syslog.h>
#include <sys/selinfo.h>
+#include <sys/timeout.h>
#include <sys/device.h>
#include <net/if.h>
diff --git a/sys/dev/pci/if_bge.c b/sys/dev/pci/if_bge.c
index 7078b05ad18..9ee116622e3 100644
--- a/sys/dev/pci/if_bge.c
+++ b/sys/dev/pci/if_bge.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: if_bge.c,v 1.153 2006/06/15 20:34:41 brad Exp $ */
+/* $OpenBSD: if_bge.c,v 1.154 2006/06/17 18:00:43 brad Exp $ */
/*
* Copyright (c) 2001 Wind River Systems
@@ -82,6 +82,7 @@
#include <sys/malloc.h>
#include <sys/kernel.h>
#include <sys/device.h>
+#include <sys/timeout.h>
#include <sys/socket.h>
#include <net/if.h>
diff --git a/sys/dev/pci/if_dc_pci.c b/sys/dev/pci/if_dc_pci.c
index caaab14aa27..9d5559a0f6d 100644
--- a/sys/dev/pci/if_dc_pci.c
+++ b/sys/dev/pci/if_dc_pci.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: if_dc_pci.c,v 1.52 2005/11/06 19:25:21 brad Exp $ */
+/* $OpenBSD: if_dc_pci.c,v 1.53 2006/06/17 18:00:43 brad Exp $ */
/*
* Copyright (c) 1997, 1998, 1999
@@ -43,6 +43,7 @@
#include <sys/socket.h>
#include <sys/ioctl.h>
#include <sys/errno.h>
+#include <sys/timeout.h>
#include <sys/malloc.h>
#include <sys/kernel.h>
#include <sys/device.h>
diff --git a/sys/dev/pci/if_ep_pci.c b/sys/dev/pci/if_ep_pci.c
index f44747dc6b1..d85a523748b 100644
--- a/sys/dev/pci/if_ep_pci.c
+++ b/sys/dev/pci/if_ep_pci.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: if_ep_pci.c,v 1.26 2005/11/21 18:16:41 millert Exp $ */
+/* $OpenBSD: if_ep_pci.c,v 1.27 2006/06/17 18:00:43 brad Exp $ */
/* $NetBSD: if_ep_pci.c,v 1.13 1996/10/21 22:56:38 thorpej Exp $ */
/*
@@ -39,6 +39,7 @@
#include <sys/socket.h>
#include <sys/ioctl.h>
#include <sys/errno.h>
+#include <sys/timeout.h>
#include <sys/syslog.h>
#include <sys/selinfo.h>
#include <sys/device.h>
diff --git a/sys/dev/pci/if_fxp_pci.c b/sys/dev/pci/if_fxp_pci.c
index cb0cfdbab84..57c9473c0f1 100644
--- a/sys/dev/pci/if_fxp_pci.c
+++ b/sys/dev/pci/if_fxp_pci.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: if_fxp_pci.c,v 1.46 2006/03/08 20:51:59 miod Exp $ */
+/* $OpenBSD: if_fxp_pci.c,v 1.47 2006/06/17 18:00:43 brad Exp $ */
/*
* Copyright (c) 1995, David Greenman
@@ -44,6 +44,7 @@
#include <sys/malloc.h>
#include <sys/kernel.h>
#include <sys/socket.h>
+#include <sys/timeout.h>
#include <sys/syslog.h>
#include <net/if.h>
diff --git a/sys/dev/pci/if_nfe.c b/sys/dev/pci/if_nfe.c
index 5ec75829340..c067654b390 100644
--- a/sys/dev/pci/if_nfe.c
+++ b/sys/dev/pci/if_nfe.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: if_nfe.c,v 1.62 2006/05/29 01:00:02 brad Exp $ */
+/* $OpenBSD: if_nfe.c,v 1.63 2006/06/17 18:00:43 brad Exp $ */
/*-
* Copyright (c) 2006 Damien Bergamini <damien.bergamini@free.fr>
@@ -32,6 +32,7 @@
#include <sys/malloc.h>
#include <sys/kernel.h>
#include <sys/device.h>
+#include <sys/timeout.h>
#include <sys/socket.h>
#include <machine/bus.h>
diff --git a/sys/dev/pci/if_re_pci.c b/sys/dev/pci/if_re_pci.c
index dc71c50e8dd..9dd70b67322 100644
--- a/sys/dev/pci/if_re_pci.c
+++ b/sys/dev/pci/if_re_pci.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: if_re_pci.c,v 1.10 2006/06/09 00:59:33 brad Exp $ */
+/* $OpenBSD: if_re_pci.c,v 1.11 2006/06/17 18:00:43 brad Exp $ */
/*
* Copyright (c) 2005 Peter Valchev <pvalchev@openbsd.org>
@@ -28,6 +28,7 @@
#include <sys/malloc.h>
#include <sys/kernel.h>
#include <sys/device.h>
+#include <sys/timeout.h>
#include <sys/socket.h>
#include <net/if.h>
diff --git a/sys/dev/pci/if_sk.c b/sys/dev/pci/if_sk.c
index 27e67e2aa40..e7e55e400b4 100644
--- a/sys/dev/pci/if_sk.c
+++ b/sys/dev/pci/if_sk.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: if_sk.c,v 1.113 2006/06/17 01:04:34 brad Exp $ */
+/* $OpenBSD: if_sk.c,v 1.114 2006/06/17 18:00:43 brad Exp $ */
/*
* Copyright (c) 1997, 1998, 1999, 2000
@@ -95,6 +95,7 @@
#include <sys/malloc.h>
#include <sys/kernel.h>
#include <sys/socket.h>
+#include <sys/timeout.h>
#include <sys/device.h>
#include <sys/queue.h>
diff --git a/sys/dev/pci/if_vge.c b/sys/dev/pci/if_vge.c
index 8d30c01c8e5..5e1f01a5072 100644
--- a/sys/dev/pci/if_vge.c
+++ b/sys/dev/pci/if_vge.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: if_vge.c,v 1.25 2006/06/13 01:33:45 brad Exp $ */
+/* $OpenBSD: if_vge.c,v 1.26 2006/06/17 18:00:43 brad Exp $ */
/* $FreeBSD: if_vge.c,v 1.3 2004/09/11 22:13:25 wpaul Exp $ */
/*
* Copyright (c) 2004
@@ -92,6 +92,7 @@
#include <sys/malloc.h>
#include <sys/kernel.h>
#include <sys/device.h>
+#include <sys/timeout.h>
#include <sys/socket.h>
#include <net/if.h>
diff --git a/sys/dev/pci/if_vr.c b/sys/dev/pci/if_vr.c
index a72d939147a..39fd9371559 100644
--- a/sys/dev/pci/if_vr.c
+++ b/sys/dev/pci/if_vr.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: if_vr.c,v 1.63 2006/05/28 00:04:24 jason Exp $ */
+/* $OpenBSD: if_vr.c,v 1.64 2006/06/17 18:00:43 brad Exp $ */
/*
* Copyright (c) 1997, 1998
@@ -69,6 +69,7 @@
#include <sys/mbuf.h>
#include <sys/malloc.h>
#include <sys/kernel.h>
+#include <sys/timeout.h>
#include <sys/socket.h>
#include <net/if.h>
diff --git a/sys/dev/pcmcia/if_ep_pcmcia.c b/sys/dev/pcmcia/if_ep_pcmcia.c
index 0c9bf9524c3..0832496a002 100644
--- a/sys/dev/pcmcia/if_ep_pcmcia.c
+++ b/sys/dev/pcmcia/if_ep_pcmcia.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: if_ep_pcmcia.c,v 1.34 2005/11/21 18:16:42 millert Exp $ */
+/* $OpenBSD: if_ep_pcmcia.c,v 1.35 2006/06/17 18:01:52 brad Exp $ */
/* $NetBSD: if_ep_pcmcia.c,v 1.16 1998/08/17 23:20:40 thorpej Exp $ */
/*-
@@ -77,6 +77,7 @@
#include <sys/errno.h>
#include <sys/syslog.h>
#include <sys/selinfo.h>
+#include <sys/timeout.h>
#include <sys/device.h>
#include <net/if.h>
diff --git a/sys/dev/pcmcia/if_sm_pcmcia.c b/sys/dev/pcmcia/if_sm_pcmcia.c
index c496caa3a87..a4b72d08fb1 100644
--- a/sys/dev/pcmcia/if_sm_pcmcia.c
+++ b/sys/dev/pcmcia/if_sm_pcmcia.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: if_sm_pcmcia.c,v 1.26 2006/04/20 20:31:13 miod Exp $ */
+/* $OpenBSD: if_sm_pcmcia.c,v 1.27 2006/06/17 18:01:52 brad Exp $ */
/* $NetBSD: if_sm_pcmcia.c,v 1.11 1998/08/15 20:47:32 thorpej Exp $ */
/*-
@@ -48,6 +48,7 @@
#include <sys/errno.h>
#include <sys/syslog.h>
#include <sys/selinfo.h>
+#include <sys/timeout.h>
#include <sys/device.h>
#include <net/if.h>