diff options
author | 2013-03-28 03:27:46 +0000 | |
---|---|---|
committer | 2013-03-28 03:27:46 +0000 | |
commit | 17f3788af046e510317291977f9d5d57c33fc1d8 (patch) | |
tree | bdfea2cf3919c06793b6bf19a2d282f56168e012 | |
parent | When updating fd_cdir or fd_rdir, put the new pointer in place (diff) | |
download | wireguard-openbsd-17f3788af046e510317291977f9d5d57c33fc1d8.tar.xz wireguard-openbsd-17f3788af046e510317291977f9d5d57c33fc1d8.zip |
no need for vnode.h to include namei.h unconditionally
ok deraadt guenther
-rw-r--r-- | sys/kern/vfs_init.c | 3 | ||||
-rw-r--r-- | sys/sys/vnode.h | 3 |
2 files changed, 3 insertions, 3 deletions
diff --git a/sys/kern/vfs_init.c b/sys/kern/vfs_init.c index a37e98642e0..e010fb4d6fd 100644 --- a/sys/kern/vfs_init.c +++ b/sys/kern/vfs_init.c @@ -1,4 +1,4 @@ -/* $OpenBSD: vfs_init.c,v 1.30 2012/08/23 06:12:49 deraadt Exp $ */ +/* $OpenBSD: vfs_init.c,v 1.31 2013/03/28 03:27:46 tedu Exp $ */ /* $NetBSD: vfs_init.c,v 1.6 1996/02/09 19:00:58 christos Exp $ */ /* @@ -39,6 +39,7 @@ #include <sys/param.h> #include <sys/mount.h> +#include <sys/namei.h> #include <sys/vnode.h> #include <sys/systm.h> #include <sys/pool.h> diff --git a/sys/sys/vnode.h b/sys/sys/vnode.h index 0fadb10fd70..8964e2d284d 100644 --- a/sys/sys/vnode.h +++ b/sys/sys/vnode.h @@ -1,4 +1,4 @@ -/* $OpenBSD: vnode.h,v 1.113 2012/10/08 15:43:08 jsing Exp $ */ +/* $OpenBSD: vnode.h,v 1.114 2013/03/28 03:27:46 tedu Exp $ */ /* $NetBSD: vnode.h,v 1.38 1996/02/29 20:59:05 cgd Exp $ */ /* @@ -39,7 +39,6 @@ #include <sys/types.h> #include <sys/queue.h> #include <sys/lock.h> -#include <sys/namei.h> #include <sys/selinfo.h> #include <sys/tree.h> |