diff options
author | Steven Whitehouse <swhiteho@redhat.com> | 2006-02-21 07:51:39 -0500 |
---|---|---|
committer | Steven Whitehouse <swhiteho@redhat.com> | 2006-02-21 07:51:39 -0500 |
commit | f55ab26a8f92a23988c3e6da28dae4741933a4e2 (patch) | |
tree | b6f9e89ce1b2ccde8d81314aeea06f6a02f882f7 /fs/gfs2/ops_super.c | |
parent | 5c4e9e036678fae65c9288e1c00a6f33cd447283 (diff) |
[GFS2] Use mutices rather than semaphores
As well as a number of minor bug fixes, this patch changes GFS
to use mutices rather than semaphores. This results in better
information in case there are any locking problems.
Signed-off-by: Steven Whitehouse <swhiteho@redhat.com>
Diffstat (limited to 'fs/gfs2/ops_super.c')
-rw-r--r-- | fs/gfs2/ops_super.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/fs/gfs2/ops_super.c b/fs/gfs2/ops_super.c index e06ef8dbd4d3..9130d0d0df3c 100644 --- a/fs/gfs2/ops_super.c +++ b/fs/gfs2/ops_super.c | |||
@@ -74,10 +74,10 @@ static void gfs2_put_super(struct super_block *sb) | |||
74 | 74 | ||
75 | /* Unfreeze the filesystem, if we need to */ | 75 | /* Unfreeze the filesystem, if we need to */ |
76 | 76 | ||
77 | down(&sdp->sd_freeze_lock); | 77 | mutex_lock(&sdp->sd_freeze_lock); |
78 | if (sdp->sd_freeze_count) | 78 | if (sdp->sd_freeze_count) |
79 | gfs2_glock_dq_uninit(&sdp->sd_freeze_gh); | 79 | gfs2_glock_dq_uninit(&sdp->sd_freeze_gh); |
80 | up(&sdp->sd_freeze_lock); | 80 | mutex_unlock(&sdp->sd_freeze_lock); |
81 | 81 | ||
82 | kthread_stop(sdp->sd_inoded_process); | 82 | kthread_stop(sdp->sd_inoded_process); |
83 | kthread_stop(sdp->sd_quotad_process); | 83 | kthread_stop(sdp->sd_quotad_process); |