Explorar o código

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>
Al Viro %!s(int64=15) %!d(string=hai) anos
pai
achega
53fe924161
Modificáronse 1 ficheiros con 1 adicións e 1 borrados
  1. 1 1
      fs/gfs2/dentry.c

+ 1 - 1
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);