diff options
Diffstat (limited to 'fs')
-rw-r--r-- | fs/ext4/mballoc.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/fs/ext4/mballoc.c b/fs/ext4/mballoc.c index 3d9277c48bc8..1cd6994fc446 100644 --- a/fs/ext4/mballoc.c +++ b/fs/ext4/mballoc.c | |||
@@ -2517,6 +2517,9 @@ int ext4_mb_release(struct super_block *sb) | |||
2517 | struct ext4_sb_info *sbi = EXT4_SB(sb); | 2517 | struct ext4_sb_info *sbi = EXT4_SB(sb); |
2518 | struct kmem_cache *cachep = get_groupinfo_cache(sb->s_blocksize_bits); | 2518 | struct kmem_cache *cachep = get_groupinfo_cache(sb->s_blocksize_bits); |
2519 | 2519 | ||
2520 | if (sbi->s_proc) | ||
2521 | remove_proc_entry("mb_groups", sbi->s_proc); | ||
2522 | |||
2520 | if (sbi->s_group_info) { | 2523 | if (sbi->s_group_info) { |
2521 | for (i = 0; i < ngroups; i++) { | 2524 | for (i = 0; i < ngroups; i++) { |
2522 | grinfo = ext4_get_group_info(sb, i); | 2525 | grinfo = ext4_get_group_info(sb, i); |
@@ -2564,8 +2567,6 @@ int ext4_mb_release(struct super_block *sb) | |||
2564 | } | 2567 | } |
2565 | 2568 | ||
2566 | free_percpu(sbi->s_locality_groups); | 2569 | free_percpu(sbi->s_locality_groups); |
2567 | if (sbi->s_proc) | ||
2568 | remove_proc_entry("mb_groups", sbi->s_proc); | ||
2569 | 2570 | ||
2570 | return 0; | 2571 | return 0; |
2571 | } | 2572 | } |