diff options
author | Wanlong Gao <gaowanlong@cn.fujitsu.com> | 2012-06-28 00:49:44 +0800 |
---|---|---|
committer | Jan Kara <jack@suse.cz> | 2012-07-09 12:03:12 +0200 |
commit | e124a32043416ddefaec3c54cc945b7667c00628 (patch) | |
tree | 9e2a10fd2147899cae80443997078551c44b6a4b /fs/ext2 | |
parent | a0e589b485cd5e6a74d40d195b3d7de212b4227d (diff) | |
download | linux-3.10-e124a32043416ddefaec3c54cc945b7667c00628.tar.gz linux-3.10-e124a32043416ddefaec3c54cc945b7667c00628.tar.bz2 linux-3.10-e124a32043416ddefaec3c54cc945b7667c00628.zip |
ext2: cleanup the confused goto label
Cleanup the confused goto label, since the big lock has been removed.
Signed-off-by: Wanlong Gao <gaowanlong@cn.fujitsu.com>
Signed-off-by: Jan Kara <jack@suse.cz>
Diffstat (limited to 'fs/ext2')
-rw-r--r-- | fs/ext2/super.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/fs/ext2/super.c b/fs/ext2/super.c index b3621cb7ea3..c8e49794ab5 100644 --- a/fs/ext2/super.c +++ b/fs/ext2/super.c @@ -771,13 +771,13 @@ static int ext2_fill_super(struct super_block *sb, void *data, int silent) err = -ENOMEM; sbi = kzalloc(sizeof(*sbi), GFP_KERNEL); if (!sbi) - goto failed_unlock; + goto failed; sbi->s_blockgroup_lock = kzalloc(sizeof(struct blockgroup_lock), GFP_KERNEL); if (!sbi->s_blockgroup_lock) { kfree(sbi); - goto failed_unlock; + goto failed; } sb->s_fs_info = sbi; sbi->s_sb_block = sb_block; @@ -1130,7 +1130,7 @@ failed_sbi: sb->s_fs_info = NULL; kfree(sbi->s_blockgroup_lock); kfree(sbi); -failed_unlock: +failed: return ret; } |