diff options
author | Al Viro <viro@zeniv.linux.org.uk> | 2011-11-24 22:19:58 -0500 |
---|---|---|
committer | Al Viro <viro@zeniv.linux.org.uk> | 2012-01-03 22:57:05 -0500 |
commit | 0714a533805a0f8ebfc6fdb6bda9f129b8c7c6d7 (patch) | |
tree | 7f34ceedc12c4a680ca3509562b09ec441a0954f /fs/mount.h | |
parent | 3376f34fff5be9954fd9a9c4fd68f4a0a36d480e (diff) |
vfs: now it can be done - make mnt_parent point to struct mount
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Diffstat (limited to 'fs/mount.h')
-rw-r--r-- | fs/mount.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/fs/mount.h b/fs/mount.h index 5126c0861102..201dd616e6c4 100644 --- a/fs/mount.h +++ b/fs/mount.h | |||
@@ -2,7 +2,7 @@ | |||
2 | 2 | ||
3 | struct mount { | 3 | struct mount { |
4 | struct list_head mnt_hash; | 4 | struct list_head mnt_hash; |
5 | struct vfsmount *mnt_parent; | 5 | struct mount *mnt_parent; |
6 | struct vfsmount mnt; | 6 | struct vfsmount mnt; |
7 | }; | 7 | }; |
8 | 8 | ||
@@ -13,7 +13,7 @@ static inline struct mount *real_mount(struct vfsmount *mnt) | |||
13 | 13 | ||
14 | static inline int mnt_has_parent(struct mount *mnt) | 14 | static inline int mnt_has_parent(struct mount *mnt) |
15 | { | 15 | { |
16 | return &mnt->mnt != mnt->mnt_parent; | 16 | return mnt != mnt->mnt_parent; |
17 | } | 17 | } |
18 | 18 | ||
19 | extern struct mount *__lookup_mnt(struct vfsmount *, struct dentry *, int); | 19 | extern struct mount *__lookup_mnt(struct vfsmount *, struct dentry *, int); |