2005-05-19 22:58:59

by Al Viro

[permalink] [raw]
Subject: [CFR][PATCH] namei fixes (19/19)

(19/19)

__do_follow_link() passes potentially worng vfsmount to touch_atime().
It matters only in (currently impossible) case of symlink mounted on
something, but it's trivial to fix and that actually makes more sense.

Signed-off-by: Al Viro <[email protected]>
----
diff -urN RC12-rc4-18/fs/namei.c RC12-rc4-19/fs/namei.c
--- RC12-rc4-18/fs/namei.c 2005-05-19 16:39:48.010936857 -0400
+++ RC12-rc4-19/fs/namei.c 2005-05-19 16:39:49.096720499 -0400
@@ -503,7 +503,7 @@
int error;
struct dentry *dentry = path->dentry;

- touch_atime(nd->mnt, dentry);
+ touch_atime(path->mnt, dentry);
nd_set_link(nd, NULL);

if (path->mnt == nd->mnt)