diff options
author | Al Viro <viro@zeniv.linux.org.uk> | 2011-11-25 04:05:19 +0100 |
---|---|---|
committer | Al Viro <viro@zeniv.linux.org.uk> | 2012-01-04 04:57:04 +0100 |
commit | 3376f34fff5be9954fd9a9c4fd68f4a0a36d480e (patch) | |
tree | 22a5995e66efd92cc394186c56deb082e4521440 /fs/dcache.c | |
parent | vfs: spread struct mount - is_path_reachable (diff) | |
download | linux-3376f34fff5be9954fd9a9c4fd68f4a0a36d480e.tar.xz 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/dcache.c')
-rw-r--r-- | fs/dcache.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/dcache.c b/fs/dcache.c index 1834e715f814..eef2d5472f9c 100644 --- a/fs/dcache.c +++ b/fs/dcache.c @@ -2465,7 +2465,7 @@ static int prepend_path(const struct path *path, if (!mnt_has_parent(mnt)) goto global_root; dentry = vfsmnt->mnt_mountpoint; - vfsmnt = vfsmnt->mnt_parent; + vfsmnt = mnt->mnt_parent; continue; } parent = dentry->d_parent; |