Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 316701
b: refs/heads/master
c: e124a32
h: refs/heads/master
i:
  316699: 3749a0e
v: v3
  • Loading branch information
Wanlong Gao authored and Jan Kara committed Jul 9, 2012
1 parent bc49b77 commit c439b09
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: a0e589b485cd5e6a74d40d195b3d7de212b4227d
refs/heads/master: e124a32043416ddefaec3c54cc945b7667c00628
6 changes: 3 additions & 3 deletions trunk/fs/ext2/super.c
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down Expand Up @@ -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;
}

Expand Down

0 comments on commit c439b09

Please sign in to comment.