diff options
author | 2010-05-23 13:49:35 +0000 | |
---|---|---|
committer | 2010-05-23 13:49:35 +0000 | |
commit | 093687264b9f72e9cdd7792e097f6f9f74c24ded (patch) | |
tree | 41c11512685a45982b015c0fae1cf7e1e1d98be7 /sys | |
parent | GCC PR C++/33094. (diff) | |
download | wireguard-openbsd-093687264b9f72e9cdd7792e097f6f9f74c24ded.tar.xz wireguard-openbsd-093687264b9f72e9cdd7792e097f6f9f74c24ded.zip |
missing dkio.h includes; ok krw@
Diffstat (limited to 'sys')
-rw-r--r-- | sys/dev/raidframe/rf_copyback.c | 3 | ||||
-rw-r--r-- | sys/dev/raidframe/rf_disks.c | 3 | ||||
-rw-r--r-- | sys/dev/raidframe/rf_openbsdkintf.c | 3 | ||||
-rw-r--r-- | sys/dev/raidframe/rf_reconstruct.c | 3 |
4 files changed, 8 insertions, 4 deletions
diff --git a/sys/dev/raidframe/rf_copyback.c b/sys/dev/raidframe/rf_copyback.c index 65b5f2ccf9c..4bb1b7d1478 100644 --- a/sys/dev/raidframe/rf_copyback.c +++ b/sys/dev/raidframe/rf_copyback.c @@ -1,4 +1,4 @@ -/* $OpenBSD: rf_copyback.c,v 1.8 2007/06/05 00:38:22 deraadt Exp $ */ +/* $OpenBSD: rf_copyback.c,v 1.9 2010/05/23 13:49:35 naddy Exp $ */ /* $NetBSD: rf_copyback.c,v 1.14 2000/03/07 02:59:50 oster Exp $ */ /* @@ -79,6 +79,7 @@ rf_ConfigureCopyback(RF_ShutdownList_t **listp) #include <sys/systm.h> #include <sys/proc.h> #include <sys/ioctl.h> +#include <sys/dkio.h> #include <sys/fcntl.h> #ifdef __NETBSD__ #include <sys/vnode.h> diff --git a/sys/dev/raidframe/rf_disks.c b/sys/dev/raidframe/rf_disks.c index d0f9994fbf2..fefce52be6b 100644 --- a/sys/dev/raidframe/rf_disks.c +++ b/sys/dev/raidframe/rf_disks.c @@ -1,4 +1,4 @@ -/* $OpenBSD: rf_disks.c,v 1.13 2008/06/26 05:42:17 ray Exp $ */ +/* $OpenBSD: rf_disks.c,v 1.14 2010/05/23 13:49:35 naddy Exp $ */ /* $NetBSD: rf_disks.c,v 1.31 2000/06/02 01:17:14 oster Exp $ */ /* @@ -80,6 +80,7 @@ #include <sys/systm.h> #include <sys/proc.h> #include <sys/ioctl.h> +#include <sys/dkio.h> #include <sys/fcntl.h> #ifdef __NETBSD__ #include <sys/vnode.h> diff --git a/sys/dev/raidframe/rf_openbsdkintf.c b/sys/dev/raidframe/rf_openbsdkintf.c index b2f471346c2..193915b404e 100644 --- a/sys/dev/raidframe/rf_openbsdkintf.c +++ b/sys/dev/raidframe/rf_openbsdkintf.c @@ -1,4 +1,4 @@ -/* $OpenBSD: rf_openbsdkintf.c,v 1.55 2010/04/23 23:59:11 krw Exp $ */ +/* $OpenBSD: rf_openbsdkintf.c,v 1.56 2010/05/23 13:49:35 naddy Exp $ */ /* $NetBSD: rf_netbsdkintf.c,v 1.109 2001/07/27 03:30:07 oster Exp $ */ /*- @@ -111,6 +111,7 @@ #include <sys/device.h> #include <sys/stat.h> #include <sys/ioctl.h> +#include <sys/dkio.h> #include <sys/fcntl.h> #include <sys/systm.h> #include <sys/namei.h> diff --git a/sys/dev/raidframe/rf_reconstruct.c b/sys/dev/raidframe/rf_reconstruct.c index 43896e524da..c8089abb61c 100644 --- a/sys/dev/raidframe/rf_reconstruct.c +++ b/sys/dev/raidframe/rf_reconstruct.c @@ -1,4 +1,4 @@ -/* $OpenBSD: rf_reconstruct.c,v 1.16 2007/06/05 00:38:22 deraadt Exp $ */ +/* $OpenBSD: rf_reconstruct.c,v 1.17 2010/05/23 13:49:35 naddy Exp $ */ /* $NetBSD: rf_reconstruct.c,v 1.26 2000/06/04 02:05:13 oster Exp $ */ /* @@ -44,6 +44,7 @@ #include <sys/systm.h> #include <sys/proc.h> #include <sys/ioctl.h> +#include <sys/dkio.h> #include <sys/fcntl.h> #if __NETBSD__ #include <sys/vnode.h> |