diff options
author | Steven Whitehouse <swhiteho@redhat.com> | 2007-01-25 12:14:59 -0500 |
---|---|---|
committer | Steven Whitehouse <swhiteho@redhat.com> | 2007-02-05 13:37:53 -0500 |
commit | d7c103d0bd29c94f78155a4538faf314e49d9713 (patch) | |
tree | 62c453ffe7d6d4637aa93dd43dbb0665175f644c /fs/gfs2/ops_inode.c | |
parent | b790c3b7c38aae28c497bb363a6fe72f7c96568f (diff) |
[GFS2] Fix recursive locking attempt with NFS
In certain cases, its possible for NFS to call the lookup code while
holding the glock (when doing a readdirplus operation) so we need to
check for that and not try and lock the glock twice. This also fixes a
typo in a previous NFS related GFS2 patch.
Signed-off-by: Steven Whitehouse <swhiteho@redhat.com>
Diffstat (limited to 'fs/gfs2/ops_inode.c')
-rw-r--r-- | fs/gfs2/ops_inode.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/gfs2/ops_inode.c b/fs/gfs2/ops_inode.c index 747c7316f5cc..5591f8905cf7 100644 --- a/fs/gfs2/ops_inode.c +++ b/fs/gfs2/ops_inode.c | |||
@@ -1018,7 +1018,7 @@ static int gfs2_getattr(struct vfsmount *mnt, struct dentry *dentry, | |||
1018 | } | 1018 | } |
1019 | 1019 | ||
1020 | generic_fillattr(inode, stat); | 1020 | generic_fillattr(inode, stat); |
1021 | if (unlock); | 1021 | if (unlock) |
1022 | gfs2_glock_dq_uninit(&gh); | 1022 | gfs2_glock_dq_uninit(&gh); |
1023 | 1023 | ||
1024 | return 0; | 1024 | return 0; |