diff options
author | Ted Unangst <tedu@cvs.openbsd.org> | 2013-03-28 03:27:47 +0000 |
---|---|---|
committer | Ted Unangst <tedu@cvs.openbsd.org> | 2013-03-28 03:27:47 +0000 |
commit | 5db347204f2f2d0c33e0cf121e4067464540507a (patch) | |
tree | 4bf33adaa56bd61439fddf514b5f5d0fac598b90 /sys | |
parent | 2dfe69e0a041b12673f550131808bd867a8d7c76 (diff) |
no need for vnode.h to include namei.h unconditionally
ok deraadt guenther
Diffstat (limited to 'sys')
-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> |