diff options
author | Al Viro <viro@zeniv.linux.org.uk> | 2011-11-23 19:34:49 -0500 |
---|---|---|
committer | Al Viro <viro@zeniv.linux.org.uk> | 2012-01-03 22:52:36 -0500 |
commit | afac7cba7ed31968a95e181dc25e204e45009ea8 (patch) | |
tree | 282cf7da6bc3915093df622ebfcd39f44f6fd1cd /fs/pnode.h | |
parent | b2dba1af3c4157040303a76d25216b1713d333d0 (diff) |
vfs: more mnt_parent cleanups
a) mount --move is checking that ->mnt_parent is non-NULL before
looking if that parent happens to be shared; ->mnt_parent is never
NULL and it's not even an misspelled !mnt_has_parent()
b) pivot_root open-codes is_path_reachable(), poorly.
c) so does path_is_under(), while we are at it.
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Diffstat (limited to 'fs/pnode.h')
-rw-r--r-- | fs/pnode.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/fs/pnode.h b/fs/pnode.h index 7f0c13ae9484..723399e76134 100644 --- a/fs/pnode.h +++ b/fs/pnode.h | |||
@@ -42,4 +42,6 @@ void mnt_set_mountpoint(struct vfsmount *, struct dentry *, | |||
42 | void release_mounts(struct list_head *); | 42 | void release_mounts(struct list_head *); |
43 | void umount_tree(struct vfsmount *, int, struct list_head *); | 43 | void umount_tree(struct vfsmount *, int, struct list_head *); |
44 | struct vfsmount *copy_tree(struct vfsmount *, struct dentry *, int); | 44 | struct vfsmount *copy_tree(struct vfsmount *, struct dentry *, int); |
45 | bool is_path_reachable(struct vfsmount *, struct dentry *, | ||
46 | const struct path *root); | ||
45 | #endif /* _LINUX_PNODE_H */ | 47 | #endif /* _LINUX_PNODE_H */ |