Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 233177
b: refs/heads/master
c: dd68314
h: refs/heads/master
i:
  233175: 916799f
v: v3
  • Loading branch information
Theodore Ts'o committed Feb 3, 2011
1 parent 14002ab commit c9a55d6
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 5 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: 8f021222c1e2756ea4c9dde93b23e1d2a0a4ec37
refs/heads/master: dd68314ccf3fb918c1fb6471817edbc60ece4b52
14 changes: 10 additions & 4 deletions trunk/fs/ext4/super.c
Original file line number Diff line number Diff line change
Expand Up @@ -4810,13 +4810,17 @@ static int __init ext4_init_fs(void)
return err;
err = ext4_init_system_zone();
if (err)
goto out5;
goto out7;
ext4_kset = kset_create_and_add("ext4", NULL, fs_kobj);
if (!ext4_kset)
goto out4;
goto out6;
ext4_proc_root = proc_mkdir("fs/ext4", NULL);
if (!ext4_proc_root)
goto out5;

err = ext4_init_feat_adverts();
if (err)
goto out4;

err = ext4_init_mballoc();
if (err)
Expand Down Expand Up @@ -4847,11 +4851,13 @@ static int __init ext4_init_fs(void)
ext4_exit_mballoc();
out3:
ext4_exit_feat_adverts();
out4:
remove_proc_entry("fs/ext4", NULL);
out5:
kset_unregister(ext4_kset);
out4:
out6:
ext4_exit_system_zone();
out5:
out7:
ext4_exit_pageio();
return err;
}
Expand Down

0 comments on commit c9a55d6

Please sign in to comment.