diff options
author | 2014-03-28 17:57:11 +0000 | |
---|---|---|
committer | 2014-03-28 17:57:11 +0000 | |
commit | 4bb7a4f6856b608b8ac93cd0e986e999e4099eb2 (patch) | |
tree | ea78578c648b918bc0b7f68baff7f3941801222a /sys/tmpfs/tmpfs_subr.c | |
parent | let's talk about shit (diff) | |
download | wireguard-openbsd-4bb7a4f6856b608b8ac93cd0e986e999e4099eb2.tar.xz wireguard-openbsd-4bb7a4f6856b608b8ac93cd0e986e999e4099eb2.zip |
Reduce uvm include madness. Use <uvm/uvm_extern.h> instead of
<uvm/uvm.h> if possible and remove double inclusions.
ok beck@, mlarkin@, deraadt@
Diffstat (limited to 'sys/tmpfs/tmpfs_subr.c')
-rw-r--r-- | sys/tmpfs/tmpfs_subr.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/tmpfs/tmpfs_subr.c b/sys/tmpfs/tmpfs_subr.c index d72edbd2eab..88a4717a12b 100644 --- a/sys/tmpfs/tmpfs_subr.c +++ b/sys/tmpfs/tmpfs_subr.c @@ -1,4 +1,4 @@ -/* $OpenBSD: tmpfs_subr.c,v 1.5 2013/12/14 18:01:52 espie Exp $ */ +/* $OpenBSD: tmpfs_subr.c,v 1.6 2014/03/28 17:57:11 mpi Exp $ */ /* $NetBSD: tmpfs_subr.c,v 1.79 2012/03/13 18:40:50 elad Exp $ */ /* @@ -91,7 +91,7 @@ __KERNEL_RCSID(0, "$NetBSD: tmpfs_subr.c,v 1.79 2012/03/13 18:40:50 elad Exp $") #include <sys/systm.h> #include <sys/vnode.h> -#include <uvm/uvm.h> +#include <uvm/uvm_aobj.h> #include <dev/rndvar.h> |