Skip to content

Commit

Permalink
[PATCH] ext3: Fix missed mutex unlock
Browse files Browse the repository at this point in the history
Missed unlock_super()call is added in error condition code path.

Signed-off-by: Leonid Ananiev <leonid.i.ananiev@intel.com>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
  • Loading branch information
Ananiev, Leonid I authored and Greg Kroah-Hartman committed Apr 17, 2006
1 parent 2436f03 commit 75616cf
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions fs/ext3/resize.c
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}
Expand Down

0 comments on commit 75616cf

Please sign in to comment.