diff options
author | Al Viro <viro@zeniv.linux.org.uk> | 2011-11-24 22:05:19 -0500 |
---|---|---|
committer | Al Viro <viro@zeniv.linux.org.uk> | 2012-01-03 22:57:04 -0500 |
commit | 3376f34fff5be9954fd9a9c4fd68f4a0a36d480e (patch) | |
tree | 22a5995e66efd92cc394186c56deb082e4521440 /fs/mount.h | |
parent | 643822b41e5e0f133438883b0be574cdaf168a2a (diff) | |
download | linux-3376f34fff5be9954fd9a9c4fd68f4a0a36d480e.tar.bz2 |
vfs: mnt_parent moved to struct mount
the second victim...
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Diffstat (limited to 'fs/mount.h')
-rw-r--r-- | fs/mount.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/fs/mount.h b/fs/mount.h index 541daf568f63..5126c0861102 100644 --- a/fs/mount.h +++ b/fs/mount.h @@ -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); |