vfs: and now we can make ->mnt_master point to struct mount

Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
This commit is contained in:
Al Viro
2011-11-25 00:10:28 -05:00
parent d10e8def07
commit 32301920f4
3 changed files with 12 additions and 12 deletions
+1 -1
View File
@@ -20,7 +20,7 @@ struct mount {
struct list_head mnt_mounts; /* list of children, anchored here */
struct list_head mnt_child; /* and going through their mnt_child */
/* yet to be moved - up to mnt_slave */
struct vfsmount *mnt_master; /* slave is on master->mnt_slave_list */
struct mount *mnt_master; /* slave is on master->mnt_slave_list */
};
static inline struct mount *real_mount(struct vfsmount *mnt)