From 9c9265929bca810e8124c9d8e906da4f7b6b03bd Mon Sep 17 00:00:00 2001 From: Mike Barcroft Date: Wed, 9 Apr 2003 17:41:46 +0000 Subject: [PATCH] Add prototypes for change_root() and change_dir(). --- sys/sys/vnode.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/sys/sys/vnode.h b/sys/sys/vnode.h index 2327ca287f62..ee2b22ee9c1d 100644 --- a/sys/sys/vnode.h +++ b/sys/sys/vnode.h @@ -610,6 +610,8 @@ int cache_lookup(struct vnode *dvp, struct vnode **vpp, void cache_purge(struct vnode *vp); void cache_purgevfs(struct mount *mp); int cache_leaf_test(struct vnode *vp); +int change_dir(struct vnode *vp, struct thread *td); +int change_root(struct vnode *vp, struct thread *td); void cvtstat(struct stat *st, struct ostat *ost); void cvtnstat(struct stat *sb, struct nstat *nsb); int getnewvnode(const char *tag, struct mount *mp, vop_t **vops,