[PATCH] ext3: Fix missed mutex unlock
Missed unlock_super()call is added in error condition code path. Signed-off-by: Leonid Ananiev <leonid.i.ananiev@intel.com> Cc: <stable@kernel.org> Signed-off-by: Andrew Morton <akpm@osdl.org> Signed-off-by: Linus Torvalds <torvalds@osdl.org>
This commit is contained in:
committed by
Linus Torvalds
parent
d93c2efc93
commit
389ed39b97
@@ -974,6 +974,7 @@ int ext3_group_extend(struct super_block *sb, struct ext3_super_block *es,
|
|||||||
if (o_blocks_count != le32_to_cpu(es->s_blocks_count)) {
|
if (o_blocks_count != le32_to_cpu(es->s_blocks_count)) {
|
||||||
ext3_warning(sb, __FUNCTION__,
|
ext3_warning(sb, __FUNCTION__,
|
||||||
"multiple resizers run on filesystem!");
|
"multiple resizers run on filesystem!");
|
||||||
|
unlock_super(sb);
|
||||||
err = -EBUSY;
|
err = -EBUSY;
|
||||||
goto exit_put;
|
goto exit_put;
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user