mirror of
https://github.com/torvalds/linux.git
synced 2024-11-10 14:11:52 +00:00
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>
This commit is contained in:
parent
4714e63731
commit
8ce84eeb5b
@ -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.
|
||||
|
Loading…
Reference in New Issue
Block a user