aboutsummaryrefslogtreecommitdiffstats
path: root/fs/cifs/dir.c
diff options
context:
space:
mode:
authorAl Viro <viro@zeniv.linux.org.uk>2016-07-05 09:44:53 -0400
committerAl Viro <viro@zeniv.linux.org.uk>2016-07-05 16:02:23 -0400
commit00699ad8571afd7fb8bc2c61f67c86c2428680ab (patch)
tree60eef261c45881ff0985f2613047d9d58d20a857 /fs/cifs/dir.c
parentLinux 4.7-rc6 (diff)
downloadlinux-dev-00699ad8571afd7fb8bc2c61f67c86c2428680ab.tar.xz
linux-dev-00699ad8571afd7fb8bc2c61f67c86c2428680ab.zip
Use the right predicate in ->atomic_open() instances
->atomic_open() can be given an in-lookup dentry *or* a negative one found in dcache. Use d_in_lookup() to tell one from another, rather than d_unhashed(). Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Diffstat (limited to 'fs/cifs/dir.c')
-rw-r--r--fs/cifs/dir.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/cifs/dir.c b/fs/cifs/dir.c
index c3eb998a99bd..fb0903fffc22 100644
--- a/fs/cifs/dir.c
+++ b/fs/cifs/dir.c
@@ -445,7 +445,7 @@ cifs_atomic_open(struct inode *inode, struct dentry *direntry,
* Check for hashed negative dentry. We have already revalidated
* the dentry and it is fine. No need to perform another lookup.
*/
- if (!d_unhashed(direntry))
+ if (!d_in_lookup(direntry))
return -ENOENT;
res = cifs_lookup(inode, direntry, 0);