Loading fs/ext2/super.c +3 −3 Original line number Diff line number Diff line Loading @@ -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; Loading Loading @@ -1130,7 +1130,7 @@ static int ext2_fill_super(struct super_block *sb, void *data, int silent) sb->s_fs_info = NULL; kfree(sbi->s_blockgroup_lock); kfree(sbi); failed_unlock: failed: return ret; } Loading Loading
fs/ext2/super.c +3 −3 Original line number Diff line number Diff line Loading @@ -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; Loading Loading @@ -1130,7 +1130,7 @@ static int ext2_fill_super(struct super_block *sb, void *data, int silent) sb->s_fs_info = NULL; kfree(sbi->s_blockgroup_lock); kfree(sbi); failed_unlock: failed: return ret; } Loading