aboutsummaryrefslogtreecommitdiffstats
path: root/fs
diff options
context:
space:
mode:
authorAl Viro <viro@zeniv.linux.org.uk>2011-03-10 03:44:48 -0500
committerAl Viro <viro@zeniv.linux.org.uk>2011-03-10 03:44:48 -0500
commit53fe924161ff18d24c5c1c256549e9c1b9874827 (patch)
tree4447ddc370f8138952146e54c515675cc026a2ee /fs
parentfuse: fix d_revalidate oopsen on NFS exports (diff)
downloadlinux-dev-53fe924161ff18d24c5c1c256549e9c1b9874827.tar.xz
linux-dev-53fe924161ff18d24c5c1c256549e9c1b9874827.zip
gfs2: fix d_revalidate oopsen on NFS exports
can't blindly check nd->flags in ->d_revalidate() Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Diffstat (limited to 'fs')
-rw-r--r--fs/gfs2/dentry.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/gfs2/dentry.c b/fs/gfs2/dentry.c
index 4a456338b873..0da8da2c991d 100644
--- a/fs/gfs2/dentry.c
+++ b/fs/gfs2/dentry.c
@@ -44,7 +44,7 @@ static int gfs2_drevalidate(struct dentry *dentry, struct nameidata *nd)
int error;
int had_lock = 0;
- if (nd->flags & LOOKUP_RCU)
+ if (nd && nd->flags & LOOKUP_RCU)
return -ECHILD;
parent = dget_parent(dentry);