diff options
author | Al Viro <viro@zeniv.linux.org.uk> | 2011-11-24 22:25:07 -0500 |
---|---|---|
committer | Al Viro <viro@zeniv.linux.org.uk> | 2012-01-03 22:57:05 -0500 |
commit | a73324da7af4052e1d1ddec6a5980f552420e58b (patch) | |
tree | 65c119bf3bb852c4298aeb24b906dc3a5be7520a /fs/mount.h | |
parent | 0714a533805a0f8ebfc6fdb6bda9f129b8c7c6d7 (diff) |
vfs: move mnt_mountpoint 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 | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/fs/mount.h b/fs/mount.h index 201dd616e6c4..853738f5897f 100644 --- a/fs/mount.h +++ b/fs/mount.h | |||
@@ -3,6 +3,7 @@ | |||
3 | struct mount { | 3 | struct mount { |
4 | struct list_head mnt_hash; | 4 | struct list_head mnt_hash; |
5 | struct mount *mnt_parent; | 5 | struct mount *mnt_parent; |
6 | struct dentry *mnt_mountpoint; | ||
6 | struct vfsmount mnt; | 7 | struct vfsmount mnt; |
7 | }; | 8 | }; |
8 | 9 | ||