Signed-off-by: OGAWA Hirofumi <hirofumi@xxxxxxxxxxxxxxxxxx> --- fs/namei.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff -puN fs/namei.c~namei-path_to_nameidata-cleanup fs/namei.c --- linux-2.6/fs/namei.c~namei-path_to_nameidata-cleanup 2010-01-10 21:15:42.000000000 +0900 +++ linux-2.6-hirofumi/fs/namei.c 2010-01-12 00:15:04.000000000 +0900 @@ -541,9 +541,10 @@ static void path_put_conditional(struct static inline void path_to_nameidata(struct path *path, struct nameidata *nd) { dput(nd->path.dentry); - if (nd->path.mnt != path->mnt) + if (nd->path.mnt != path->mnt) { mntput(nd->path.mnt); - nd->path.mnt = path->mnt; + nd->path.mnt = path->mnt; + } nd->path.dentry = path->dentry; } _ -- OGAWA Hirofumi <hirofumi@xxxxxxxxxxxxxxxxxx> -- To unsubscribe from this list: send the line "unsubscribe linux-fsdevel" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html