aboutsummaryrefslogtreecommitdiffstats
path: root/fs/mount.h
diff options
context:
space:
mode:
authorAl Viro <viro@zeniv.linux.org.uk>2011-11-25 00:10:28 -0500
committerAl Viro <viro@zeniv.linux.org.uk>2012-01-03 22:57:08 -0500
commit32301920f44a9334f57dd94bebfc6e593b99ad47 (patch)
treec8b7d1aa15244c30b5820aea30022609a12dacec /fs/mount.h
parentd10e8def07fc87488c396d2eff2c26c43bb541dd (diff)
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.h2
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 {
20 struct list_head mnt_mounts; /* list of children, anchored here */ 20 struct list_head mnt_mounts; /* list of children, anchored here */
21 struct list_head mnt_child; /* and going through their mnt_child */ 21 struct list_head mnt_child; /* and going through their mnt_child */
22 /* yet to be moved - up to mnt_slave */ 22 /* yet to be moved - up to mnt_slave */
23 struct vfsmount *mnt_master; /* slave is on master->mnt_slave_list */ 23 struct mount *mnt_master; /* slave is on master->mnt_slave_list */
24}; 24};
25 25
26static inline struct mount *real_mount(struct vfsmount *mnt) 26static inline struct mount *real_mount(struct vfsmount *mnt)