The patch titled gfs2: fix locking mistake has been added to the -mm tree. Its filename is gfs2-fix-locking-mistake.patch *** Remember to use Documentation/SubmitChecklist when testing your code *** See http://www.zip.com.au/~akpm/linux/patches/stuff/added-to-mm.txt to find out what to do about this ------------------------------------------------------ Subject: gfs2: fix locking mistake From: Josef Whiter <jwhiter@xxxxxxxxxx> Fix a locking mistake in the quota code, we do a mutex_lock instead of a mutex_unlock. Signed-off-by: Josef Whiter <jwhiter@xxxxxxxxxx> Cc: Steven Whitehouse <swhiteho@xxxxxxxxxx> Cc: <stable@xxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- fs/gfs2/quota.c | 2 +- 1 files changed, 1 insertion(+), 1 deletion(-) diff -puN fs/gfs2/quota.c~gfs2-fix-locking-mistake fs/gfs2/quota.c --- a/fs/gfs2/quota.c~gfs2-fix-locking-mistake +++ a/fs/gfs2/quota.c @@ -279,7 +279,7 @@ static int bh_get(struct gfs2_quota_data (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; _ Patches currently in -mm which might be from jwhiter@xxxxxxxxxx are gfs2-fix-locking-mistake.patch - To unsubscribe from this list: send the line "unsubscribe mm-commits" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html