aboutsummaryrefslogtreecommitdiffstats
path: root/fs/pnode.c
diff options
context:
space:
mode:
authorAl Viro <viro@zeniv.linux.org.uk>2011-11-24 22:05:19 -0500
committerAl Viro <viro@zeniv.linux.org.uk>2012-01-03 22:57:04 -0500
commit3376f34fff5be9954fd9a9c4fd68f4a0a36d480e (patch)
tree22a5995e66efd92cc394186c56deb082e4521440 /fs/pnode.c
parent643822b41e5e0f133438883b0be574cdaf168a2a (diff)
vfs: mnt_parent moved to struct mount
the second victim... Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Diffstat (limited to 'fs/pnode.c')
-rw-r--r--fs/pnode.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/fs/pnode.c b/fs/pnode.c
index 25f74b53dea6..2ff4dfa018e1 100644
--- a/fs/pnode.c
+++ b/fs/pnode.c
@@ -292,7 +292,7 @@ int propagate_mount_busy(struct mount *mnt, int refcnt)
292{ 292{
293 struct vfsmount *m; 293 struct vfsmount *m;
294 struct mount *child; 294 struct mount *child;
295 struct vfsmount *parent = mnt->mnt.mnt_parent; 295 struct vfsmount *parent = mnt->mnt_parent;
296 int ret = 0; 296 int ret = 0;
297 297
298 if (&mnt->mnt == parent) 298 if (&mnt->mnt == parent)
@@ -322,7 +322,7 @@ int propagate_mount_busy(struct mount *mnt, int refcnt)
322 */ 322 */
323static void __propagate_umount(struct mount *mnt) 323static void __propagate_umount(struct mount *mnt)
324{ 324{
325 struct vfsmount *parent = mnt->mnt.mnt_parent; 325 struct vfsmount *parent = mnt->mnt_parent;
326 struct vfsmount *m; 326 struct vfsmount *m;
327 327
328 BUG_ON(parent == &mnt->mnt); 328 BUG_ON(parent == &mnt->mnt);