vfs: spread struct mount - mnt_has_parent

Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
This commit is contained in:
Al Viro
2011-11-24 21:47:05 -05:00
parent 1ab5973862
commit 676da58df7
3 changed files with 13 additions and 12 deletions

View File

@@ -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);