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/page-io.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/page-io.c')
-rw-r--r-- | fs/ext4/page-io.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/fs/ext4/page-io.c b/fs/ext4/page-io.c index b972ca50f851..46a7d6a9d976 100644 --- a/fs/ext4/page-io.c +++ b/fs/ext4/page-io.c | |||
@@ -32,7 +32,7 @@ | |||
32 | 32 | ||
33 | static struct kmem_cache *io_page_cachep, *io_end_cachep; | 33 | static struct kmem_cache *io_page_cachep, *io_end_cachep; |
34 | 34 | ||
35 | int __init init_ext4_pageio(void) | 35 | int __init ext4_init_pageio(void) |
36 | { | 36 | { |
37 | io_page_cachep = KMEM_CACHE(ext4_io_page, SLAB_RECLAIM_ACCOUNT); | 37 | io_page_cachep = KMEM_CACHE(ext4_io_page, SLAB_RECLAIM_ACCOUNT); |
38 | if (io_page_cachep == NULL) | 38 | if (io_page_cachep == NULL) |
@@ -46,7 +46,7 @@ int __init init_ext4_pageio(void) | |||
46 | return 0; | 46 | return 0; |
47 | } | 47 | } |
48 | 48 | ||
49 | void exit_ext4_pageio(void) | 49 | void ext4_exit_pageio(void) |
50 | { | 50 | { |
51 | kmem_cache_destroy(io_end_cachep); | 51 | kmem_cache_destroy(io_end_cachep); |
52 | kmem_cache_destroy(io_page_cachep); | 52 | kmem_cache_destroy(io_page_cachep); |