diff options
author | David Gwynne <dlg@cvs.openbsd.org> | 2010-05-18 04:41:15 +0000 |
---|---|---|
committer | David Gwynne <dlg@cvs.openbsd.org> | 2010-05-18 04:41:15 +0000 |
commit | 2a8c476cc299b5156f773ee5184486606637e917 (patch) | |
tree | 30e6afac5430b625bb13529ef5157accc51637d9 /sys/uvm/uvm_vnode.c | |
parent | 5f7844d39f199b58e0025efc5d45e6ab79446132 (diff) |
dont let sys/ioctl.h imply that you get the ioctls in dkio.h. this
gets rid of #include <sys/dkio.h> in sys/ioctl.h and adds #include
<sys/dkio.h> to the places that actually want and use the disk
ioctls.
this became an issue when krw@'s X build failed when he was testing
a change to dkio.h.
tested by krw@
help from and ok miod@
Diffstat (limited to 'sys/uvm/uvm_vnode.c')
-rw-r--r-- | sys/uvm/uvm_vnode.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sys/uvm/uvm_vnode.c b/sys/uvm/uvm_vnode.c index a35a6b47770..92e80bd4b31 100644 --- a/sys/uvm/uvm_vnode.c +++ b/sys/uvm/uvm_vnode.c @@ -1,4 +1,4 @@ -/* $OpenBSD: uvm_vnode.c,v 1.70 2010/04/30 21:56:39 oga Exp $ */ +/* $OpenBSD: uvm_vnode.c,v 1.71 2010/05/18 04:41:14 dlg Exp $ */ /* $NetBSD: uvm_vnode.c,v 1.36 2000/11/24 20:34:01 chs Exp $ */ /* @@ -60,6 +60,7 @@ #include <sys/fcntl.h> #include <sys/conf.h> #include <sys/rwlock.h> +#include <sys/dkio.h> #include <miscfs/specfs/specdev.h> |