diff options
author | Theodore Ts'o <tytso@mit.edu> | 2010-10-27 21:30:14 -0400 |
---|---|---|
committer | Theodore Ts'o <tytso@mit.edu> | 2010-10-27 21:30:14 -0400 |
commit | 5dabfc78dcedbe46cb2e4872dde448de3cec2979 (patch) | |
tree | 804ef3e76289978ef6690c2b8f379a14a60b15f0 /fs/ext4/mballoc.c | |
parent | 7f93cff90fa9be6ed45f6189e136153d1d8631b0 (diff) |
ext4: rename {exit,init}_ext4_*() to ext4_{exit,init}_*()
This is a cleanup to avoid namespace leaks out of fs/ext4
Signed-off-by: "Theodore Ts'o" <tytso@mit.edu>
Diffstat (limited to 'fs/ext4/mballoc.c')
-rw-r--r-- | fs/ext4/mballoc.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/fs/ext4/mballoc.c b/fs/ext4/mballoc.c index e3bcc06b4906..381ac565786a 100644 --- a/fs/ext4/mballoc.c +++ b/fs/ext4/mballoc.c | |||
@@ -2705,7 +2705,7 @@ static void ext4_remove_debugfs_entry(void) | |||
2705 | 2705 | ||
2706 | #endif | 2706 | #endif |
2707 | 2707 | ||
2708 | int __init init_ext4_mballoc(void) | 2708 | int __init ext4_init_mballoc(void) |
2709 | { | 2709 | { |
2710 | ext4_pspace_cachep = KMEM_CACHE(ext4_prealloc_space, | 2710 | ext4_pspace_cachep = KMEM_CACHE(ext4_prealloc_space, |
2711 | SLAB_RECLAIM_ACCOUNT); | 2711 | SLAB_RECLAIM_ACCOUNT); |
@@ -2730,7 +2730,7 @@ int __init init_ext4_mballoc(void) | |||
2730 | return 0; | 2730 | return 0; |
2731 | } | 2731 | } |
2732 | 2732 | ||
2733 | void exit_ext4_mballoc(void) | 2733 | void ext4_exit_mballoc(void) |
2734 | { | 2734 | { |
2735 | int i; | 2735 | int i; |
2736 | /* | 2736 | /* |