diff options
author | Steven Whitehouse <swhiteho@redhat.com> | 2006-04-20 16:57:23 -0400 |
---|---|---|
committer | Steven Whitehouse <swhiteho@redhat.com> | 2006-04-20 16:57:23 -0400 |
commit | 190562bd84a484bf6590425aa2bb4d6d611c112b (patch) | |
tree | dd99bcd847f8d2376f7836ea9d861a31d1021c71 /fs/gfs2/inode.c | |
parent | fe1bdedc6c16adedc6fd3636185ea91596b1d6eb (diff) |
[GFS2] Fix a bug: scheduling under a spinlock
At some stage, a mutex was added to gfs2_glock_put() without
checking all its call sites. Two of them were called from
under a spinlock causing random delays at various points and
crashes.
Signed-off-by: Steven Whitehouse <swhiteho@redhat.com>
Diffstat (limited to 'fs/gfs2/inode.c')
-rw-r--r-- | fs/gfs2/inode.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/gfs2/inode.c b/fs/gfs2/inode.c index 6140c2434e85..fb5a4d06e926 100644 --- a/fs/gfs2/inode.c +++ b/fs/gfs2/inode.c | |||
@@ -409,8 +409,8 @@ void gfs2_inode_destroy(struct gfs2_inode *ip) | |||
409 | 409 | ||
410 | spin_lock(&io_gl->gl_spin); | 410 | spin_lock(&io_gl->gl_spin); |
411 | io_gl->gl_object = NULL; | 411 | io_gl->gl_object = NULL; |
412 | gfs2_glock_put(i_gl); | ||
413 | spin_unlock(&io_gl->gl_spin); | 412 | spin_unlock(&io_gl->gl_spin); |
413 | gfs2_glock_put(i_gl); | ||
414 | 414 | ||
415 | gfs2_glock_dq_uninit(&ip->i_iopen_gh); | 415 | gfs2_glock_dq_uninit(&ip->i_iopen_gh); |
416 | 416 | ||