diff options
author | Al Viro | 2011-11-25 04:05:19 +0100 |
---|---|---|
committer | Al Viro | 2012-01-04 04:57:04 +0100 |
commit | 3376f34fff5be9954fd9a9c4fd68f4a0a36d480e (patch) | |
tree | 22a5995e66efd92cc394186c56deb082e4521440 /fs/pnode.c | |
parent | vfs: spread struct mount - is_path_reachable (diff) | |
download | kernel-qcow2-linux-3376f34fff5be9954fd9a9c4fd68f4a0a36d480e.tar.gz kernel-qcow2-linux-3376f34fff5be9954fd9a9c4fd68f4a0a36d480e.tar.xz kernel-qcow2-linux-3376f34fff5be9954fd9a9c4fd68f4a0a36d480e.zip |
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.c | 4 |
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) { struct vfsmount *m; struct mount *child; - struct vfsmount *parent = mnt->mnt.mnt_parent; + struct vfsmount *parent = mnt->mnt_parent; int ret = 0; if (&mnt->mnt == parent) @@ -322,7 +322,7 @@ int propagate_mount_busy(struct mount *mnt, int refcnt) */ static void __propagate_umount(struct mount *mnt) { - struct vfsmount *parent = mnt->mnt.mnt_parent; + struct vfsmount *parent = mnt->mnt_parent; struct vfsmount *m; BUG_ON(parent == &mnt->mnt); |