summaryrefslogtreecommitdiffstats
path: root/fs/configfs/inode.c
diff options
context:
space:
mode:
authorAl Viro2015-05-18 16:10:34 +0200
committerAl Viro2015-06-24 00:02:01 +0200
commitdc3f4198eac14e52a98dfc79cd84b45e280f59cd (patch)
tree1fa6e8ec571132471e903a6a1d34accacfa9ad33 /fs/configfs/inode.c
parentufs: use dir_pages instead of ufs_dir_pages() (diff)
downloadkernel-qcow2-linux-dc3f4198eac14e52a98dfc79cd84b45e280f59cd.tar.gz
kernel-qcow2-linux-dc3f4198eac14e52a98dfc79cd84b45e280f59cd.tar.xz
kernel-qcow2-linux-dc3f4198eac14e52a98dfc79cd84b45e280f59cd.zip
make simple_positive() public
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Diffstat (limited to 'fs/configfs/inode.c')
-rw-r--r--fs/configfs/inode.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/configfs/inode.c b/fs/configfs/inode.c
index 8d89f5fd0331..eae87575e681 100644
--- a/fs/configfs/inode.c
+++ b/fs/configfs/inode.c
@@ -236,7 +236,7 @@ void configfs_drop_dentry(struct configfs_dirent * sd, struct dentry * parent)
if (dentry) {
spin_lock(&dentry->d_lock);
- if (!d_unhashed(dentry) && d_really_is_positive(dentry)) {
+ if (simple_positive(dentry)) {
dget_dlock(dentry);
__d_drop(dentry);
spin_unlock(&dentry->d_lock);