diff options
author | Al Viro <viro@zeniv.linux.org.uk> | 2013-09-15 19:41:16 -0400 |
---|---|---|
committer | Al Viro <viro@zeniv.linux.org.uk> | 2013-10-24 23:34:47 -0400 |
commit | 3a93e17cf68b01fa29c7a2e861ce508dcd3401ca (patch) | |
tree | 7dbe8a9a7c9d1e23c94e8487424166ca636e66fd | |
parent | ceaec15d49f29de1f8864e31ff4007c34b031bff (diff) |
ecryptfs: check DCACHE_OP_REVALIDATE instead of ->d_op
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
-rw-r--r-- | fs/ecryptfs/dentry.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/ecryptfs/dentry.c b/fs/ecryptfs/dentry.c index bf12ba5dd223..46e31c92e574 100644 --- a/fs/ecryptfs/dentry.c +++ b/fs/ecryptfs/dentry.c | |||
@@ -51,7 +51,7 @@ static int ecryptfs_d_revalidate(struct dentry *dentry, unsigned int flags) | |||
51 | return -ECHILD; | 51 | return -ECHILD; |
52 | 52 | ||
53 | lower_dentry = ecryptfs_dentry_to_lower(dentry); | 53 | lower_dentry = ecryptfs_dentry_to_lower(dentry); |
54 | if (!lower_dentry->d_op || !lower_dentry->d_op->d_revalidate) | 54 | if (!(lower_dentry->d_flags & DCACHE_OP_REVALIDATE)) |
55 | goto out; | 55 | goto out; |
56 | rc = lower_dentry->d_op->d_revalidate(lower_dentry, flags); | 56 | rc = lower_dentry->d_op->d_revalidate(lower_dentry, flags); |
57 | if (dentry->d_inode) { | 57 | if (dentry->d_inode) { |