diff options
author | Al Viro <viro@zeniv.linux.org.uk> | 2011-11-25 00:10:28 -0500 |
---|---|---|
committer | Al Viro <viro@zeniv.linux.org.uk> | 2012-01-03 22:57:08 -0500 |
commit | 32301920f44a9334f57dd94bebfc6e593b99ad47 (patch) | |
tree | c8b7d1aa15244c30b5820aea30022609a12dacec /fs/mount.h | |
parent | d10e8def07fc87488c396d2eff2c26c43bb541dd (diff) | |
download | linux-32301920f44a9334f57dd94bebfc6e593b99ad47.tar.bz2 |
vfs: and now we can make ->mnt_master 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 | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/mount.h b/fs/mount.h index 7071d8fa9307..d4db4c7e1815 100644 --- a/fs/mount.h +++ b/fs/mount.h @@ -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) |