Commit 75616cf9 authored by Ananiev, Leonid I's avatar Ananiev, Leonid I Committed by Greg Kroah-Hartman

[PATCH] ext3: Fix missed mutex unlock

Missed unlock_super()call is added in error condition code path.
Signed-off-by: default avatarLeonid Ananiev <leonid.i.ananiev@intel.com>
Signed-off-by: default avatarAndrew Morton <akpm@osdl.org>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@suse.de>
parent 2436f039
......@@ -767,6 +767,7 @@ int ext3_group_add(struct super_block *sb, struct ext3_new_group_data *input)
if (input->group != sbi->s_groups_count) {
ext3_warning(sb, __FUNCTION__,
"multiple resizers run on filesystem!");
unlock_super(sb);
err = -EBUSY;
goto exit_journal;
}
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment