diff options
author | Denis Cheng <crquan@gmail.com> | 2007-10-17 02:30:11 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@woody.linux-foundation.org> | 2007-10-17 11:43:00 -0400 |
commit | f77e34987070a20e4b3e06b868cb39eb73670467 (patch) | |
tree | 2f959c6ac61e6183eafed66be84ed849f60cb29b /fs/dcache.c | |
parent | db8906da596708865a2ead6a8c2af090255ca549 (diff) |
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>
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 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) | |||
1542 | } | 1542 | } |
1543 | 1543 | ||
1544 | /* Move the dentry to the target hash queue, if on different bucket */ | 1544 | /* Move the dentry to the target hash queue, if on different bucket */ |
1545 | if (dentry->d_flags & DCACHE_UNHASHED) | 1545 | if (d_unhashed(dentry)) |
1546 | goto already_unhashed; | 1546 | goto already_unhashed; |
1547 | 1547 | ||
1548 | hlist_del_rcu(&dentry->d_hash); | 1548 | hlist_del_rcu(&dentry->d_hash); |