diff options
| author | Al Viro <viro@zeniv.linux.org.uk> | 2011-03-10 03:44:48 -0500 |
|---|---|---|
| committer | Al Viro <viro@zeniv.linux.org.uk> | 2011-03-10 03:44:48 -0500 |
| commit | 53fe924161ff18d24c5c1c256549e9c1b9874827 (patch) | |
| tree | 4447ddc370f8138952146e54c515675cc026a2ee | |
| parent | 529c5f958f9e60abaa7407986034b17d17536bf2 (diff) | |
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>
| -rw-r--r-- | fs/gfs2/dentry.c | 2 |
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) | |||
| 44 | int error; | 44 | int error; |
| 45 | int had_lock = 0; | 45 | int had_lock = 0; |
| 46 | 46 | ||
| 47 | if (nd->flags & LOOKUP_RCU) | 47 | if (nd && nd->flags & LOOKUP_RCU) |
| 48 | return -ECHILD; | 48 | return -ECHILD; |
| 49 | 49 | ||
| 50 | parent = dget_parent(dentry); | 50 | parent = dget_parent(dentry); |
