vfs: spread struct mount - is_path_reachable
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
diff --git a/fs/pnode.c b/fs/pnode.c
index 3105cca..25f74b5 100644
--- a/fs/pnode.c
+++ b/fs/pnode.c
@@ -32,15 +32,15 @@
struct mnt_namespace *ns,
const struct path *root)
{
- struct vfsmount *m = mnt;
+ struct mount *m = real_mount(mnt);
do {
/* Check the namespace first for optimization */
- if (m->mnt_ns == ns && is_path_reachable(m, m->mnt_root, root))
- return m;
+ if (m->mnt.mnt_ns == ns && is_path_reachable(m, m->mnt.mnt_root, root))
+ return &m->mnt;
- m = next_peer(m);
- } while (m != mnt);
+ m = real_mount(next_peer(&m->mnt));
+ } while (&m->mnt != mnt);
return NULL;
}