vfs: mnt_parent moved to struct mount
the second victim... Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
This commit is contained in:
@@ -2,6 +2,7 @@
|
||||
|
||||
struct mount {
|
||||
struct list_head mnt_hash;
|
||||
struct vfsmount *mnt_parent;
|
||||
struct vfsmount mnt;
|
||||
};
|
||||
|
||||
@@ -12,7 +13,7 @@ static inline struct mount *real_mount(struct vfsmount *mnt)
|
||||
|
||||
static inline int mnt_has_parent(struct mount *mnt)
|
||||
{
|
||||
return &mnt->mnt != mnt->mnt.mnt_parent;
|
||||
return &mnt->mnt != mnt->mnt_parent;
|
||||
}
|
||||
|
||||
extern struct mount *__lookup_mnt(struct vfsmount *, struct dentry *, int);
|
||||
|
Reference in New Issue
Block a user