From: Steven Whitehouse Date: Fri, 28 Jul 2006 18:52:33 +0000 (-0400) Subject: [GFS2] Fix bug in clear_inode X-Git-Url: http://drtracing.org/?a=commitdiff_plain;h=5dd9feafb351a8bf304292623cbc63335c34d279;p=deliverable%2Flinux.git [GFS2] Fix bug in clear_inode We should have been waiting for lock demotion to finish in clear_inode. Signed-off-by: Steven Whitehouse --- diff --git a/fs/gfs2/glock.c b/fs/gfs2/glock.c index 91ac9c9d4a96..b6edf7c0923b 100644 --- a/fs/gfs2/glock.c +++ b/fs/gfs2/glock.c @@ -771,6 +771,7 @@ void gfs2_glock_inode_squish(struct inode *inode) list_add_tail(&gh.gh_list, &gl->gl_waiters2); run_queue(gl); spin_unlock(&gl->gl_spin); + wait_for_completion(&gh.gh_wait); gfs2_holder_uninit(&gh); }