From: Miklos Szeredi Date: Thu, 5 Sep 2013 09:44:39 +0000 (+0200) Subject: gfs2: use check_submounts_and_drop() X-Git-Tag: v3.12-rc1~105^2~6 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=1191a2bdf012147c33e5fa95255974a3f7bf6e2f;p=platform%2Fkernel%2Flinux-exynos.git gfs2: use check_submounts_and_drop() Do have_submounts(), shrink_dcache_parent() and d_drop() atomically. check_submounts_and_drop() can deal with negative dentries and non-directories as well. Non-directories can also be mounted on. And just like directories we don't want these to disappear with invalidation. Signed-off-by: Miklos Szeredi CC: Steven Whitehouse Signed-off-by: Al Viro --- diff --git a/fs/gfs2/dentry.c b/fs/gfs2/dentry.c index f2448ab..d3a5d4e 100644 --- a/fs/gfs2/dentry.c +++ b/fs/gfs2/dentry.c @@ -93,12 +93,9 @@ invalid_gunlock: if (!had_lock) gfs2_glock_dq_uninit(&d_gh); invalid: - if (inode && S_ISDIR(inode->i_mode)) { - if (have_submounts(dentry)) - goto valid; - shrink_dcache_parent(dentry); - } - d_drop(dentry); + if (check_submounts_and_drop(dentry) != 0) + goto valid; + dput(parent); return 0;