From: Denis Cheng <crquan@gmail.com>
Date: Wed, 17 Oct 2007 06:30:11 +0000 (-0700)
Subject: vfs: use the predefined d_unhashed inline function instead
X-Git-Tag: firefly_0821_release~25222
X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=f77e34987070a20e4b3e06b868cb39eb73670467;p=firefly-linux-kernel-4.4.55.git

vfs: use the predefined d_unhashed inline function instead

Signed-off-by: Denis Cheng <crquan@gmail.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
---

diff --git a/fs/dcache.c b/fs/dcache.c
index 42d290be0ac1..5489b2d98a00 100644
--- a/fs/dcache.c
+++ b/fs/dcache.c
@@ -1542,7 +1542,7 @@ static void d_move_locked(struct dentry * dentry, struct dentry * target)
 	}
 
 	/* Move the dentry to the target hash queue, if on different bucket */
-	if (dentry->d_flags & DCACHE_UNHASHED)
+	if (d_unhashed(dentry))
 		goto already_unhashed;
 
 	hlist_del_rcu(&dentry->d_hash);