diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 2014-07-08 17:19:27 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 2014-07-08 17:19:27 +0000 |
commit | ca6b780f3bfa5c9a89ba92e6cd2521c9329cdc0f (patch) | |
tree | 42548dbe5d3a602c490a5126d137dcdef5c71c6f /sys/kern/vfs_subr.c | |
parent | 0ed1c38073e501cc08c2d664396820fe904f718c (diff) |
decouple struct uvmexp into a new file, so that uvm_extern.h and sysctl.h
don't need to be married.
ok guenther miod beck jsing kettenis
Diffstat (limited to 'sys/kern/vfs_subr.c')
-rw-r--r-- | sys/kern/vfs_subr.c | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/sys/kern/vfs_subr.c b/sys/kern/vfs_subr.c index 00e9bc7c7a3..7fad89681ab 100644 --- a/sys/kern/vfs_subr.c +++ b/sys/kern/vfs_subr.c @@ -1,4 +1,4 @@ -/* $OpenBSD: vfs_subr.c,v 1.214 2014/06/04 07:58:14 claudio Exp $ */ +/* $OpenBSD: vfs_subr.c,v 1.215 2014/07/08 17:19:25 deraadt Exp $ */ /* $NetBSD: vfs_subr.c,v 1.53 1996/04/22 01:39:13 christos Exp $ */ /* @@ -44,6 +44,7 @@ #include <sys/param.h> #include <sys/systm.h> #include <sys/proc.h> +#include <sys/sysctl.h> #include <sys/mount.h> #include <sys/time.h> #include <sys/fcntl.h> @@ -64,9 +65,6 @@ #include <netinet/in.h> -#include <uvm/uvm_extern.h> -#include <sys/sysctl.h> - enum vtype iftovt_tab[16] = { VNON, VFIFO, VCHR, VNON, VDIR, VNON, VBLK, VNON, VREG, VNON, VLNK, VNON, VSOCK, VNON, VNON, VBAD, |