diff options
| author | Ananiev, Leonid I <leonid.i.ananiev@intel.com> | 2006-04-11 01:54:38 -0400 |
|---|---|---|
| committer | Greg Kroah-Hartman <gregkh@suse.de> | 2006-04-17 17:24:57 -0400 |
| commit | 75616cf9854b83eb83a968b1338ae0ee11c9673c (patch) | |
| tree | 8817195d9d9ef0c10e5b715efe5b381bb78cbd68 | |
| parent | 2436f039d26a91e5404974ee0cb789b17db46168 (diff) | |
[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>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
| -rw-r--r-- | fs/ext3/resize.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/fs/ext3/resize.c b/fs/ext3/resize.c index 14f5f6ea3e72..c5ffa8523968 100644 --- a/fs/ext3/resize.c +++ b/fs/ext3/resize.c | |||
| @@ -767,6 +767,7 @@ int ext3_group_add(struct super_block *sb, struct ext3_new_group_data *input) | |||
| 767 | if (input->group != sbi->s_groups_count) { | 767 | if (input->group != sbi->s_groups_count) { |
| 768 | ext3_warning(sb, __FUNCTION__, | 768 | ext3_warning(sb, __FUNCTION__, |
| 769 | "multiple resizers run on filesystem!"); | 769 | "multiple resizers run on filesystem!"); |
| 770 | unlock_super(sb); | ||
| 770 | err = -EBUSY; | 771 | err = -EBUSY; |
| 771 | goto exit_journal; | 772 | goto exit_journal; |
| 772 | } | 773 | } |
