Commit 74ff0ffc authored by Al Viro's avatar Al Viro

namei: simplify invalidation logics in lookup_dcache()

Signed-off-by: default avatarAl Viro <viro@zeniv.linux.org.uk>
parent e9742b53
...@@ -1458,14 +1458,10 @@ static struct dentry *lookup_dcache(struct qstr *name, struct dentry *dir, ...@@ -1458,14 +1458,10 @@ static struct dentry *lookup_dcache(struct qstr *name, struct dentry *dir,
if (dentry->d_flags & DCACHE_OP_REVALIDATE) { if (dentry->d_flags & DCACHE_OP_REVALIDATE) {
error = d_revalidate(dentry, flags); error = d_revalidate(dentry, flags);
if (unlikely(error <= 0)) { if (unlikely(error <= 0)) {
if (error < 0) { if (!error)
dput(dentry);
return ERR_PTR(error);
} else {
d_invalidate(dentry); d_invalidate(dentry);
dput(dentry); dput(dentry);
dentry = NULL; return ERR_PTR(error);
}
} }
} }
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment