aboutsummaryrefslogtreecommitdiffstats
path: root/fs/gfs2
diff options
context:
space:
mode:
authorJosef Whiter <jwhiter@redhat.com>2007-02-20 00:03:29 -0500
committerSteven Whitehouse <swhiteho@redhat.com>2007-03-07 13:56:41 -0500
commit2e95b6653bb69c893e6ee1b42b537939c1ea2b9c (patch)
tree8e08e3850d755515c4bac6577f6855c260add55e /fs/gfs2
parentLinux 2.6.21-rc3 (diff)
downloadlinux-dev-2e95b6653bb69c893e6ee1b42b537939c1ea2b9c.tar.xz
linux-dev-2e95b6653bb69c893e6ee1b42b537939c1ea2b9c.zip
[GFS2] fix locking mistake
This patch fixes a locking mistake in the quota code, we do a mutex_lock instead of a mutex_unlock. Signed-off-by: Josef Whiter <jwhiter@redhat.com> Signed-off-by: Steven Whitehouse <swhiteho@redhat.com>
Diffstat (limited to 'fs/gfs2')
-rw-r--r--fs/gfs2/quota.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/gfs2/quota.c b/fs/gfs2/quota.c
index d0db881b55d2..c186857e48a8 100644
--- a/fs/gfs2/quota.c
+++ b/fs/gfs2/quota.c
@@ -279,7 +279,7 @@ static int bh_get(struct gfs2_quota_data *qd)
(bh->b_data + sizeof(struct gfs2_meta_header) +
offset * sizeof(struct gfs2_quota_change));
- mutex_lock(&sdp->sd_quota_mutex);
+ mutex_unlock(&sdp->sd_quota_mutex);
return 0;