aboutsummaryrefslogtreecommitdiff
path: root/fs/mount.h
diff options
context:
space:
mode:
authorAl Viro <viro@zeniv.linux.org.uk>2011-11-24 21:47:05 -0500
committerAl Viro <viro@zeniv.linux.org.uk>2012-01-03 22:57:04 -0500
commit676da58df740f325034b8641311413c2393588e1 (patch)
tree88d1e385d368d73c7b1284da2fc46516879a867d /fs/mount.h
parent1ab597386205f8dc757cf8750465502aeae65154 (diff)
vfs: spread struct mount - mnt_has_parent
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Diffstat (limited to 'fs/mount.h')
-rw-r--r--fs/mount.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/fs/mount.h b/fs/mount.h
index 831e7c86835..541daf568f6 100644
--- a/fs/mount.h
+++ b/fs/mount.h
@@ -10,9 +10,9 @@ static inline struct mount *real_mount(struct vfsmount *mnt)
return container_of(mnt, struct mount, mnt);
}
-static inline int mnt_has_parent(struct vfsmount *mnt)
+static inline int mnt_has_parent(struct mount *mnt)
{
- return mnt != mnt->mnt_parent;
+ return &mnt->mnt != mnt->mnt.mnt_parent;
}
extern struct mount *__lookup_mnt(struct vfsmount *, struct dentry *, int);