Ver código fonte

jfs: 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 14 anos atrás
pai
commit
8ce84eeb5b
1 arquivos alterados com 1 adições e 1 exclusões
  1. 1 1
      fs/jfs/namei.c

+ 1 - 1
fs/jfs/namei.c

@@ -1600,7 +1600,7 @@ out:
 
 static int jfs_ci_revalidate(struct dentry *dentry, struct nameidata *nd)
 {
-	if (nd->flags & LOOKUP_RCU)
+	if (nd && nd->flags & LOOKUP_RCU)
 		return -ECHILD;
 	/*
 	 * This is not negative dentry. Always valid.