diff options
-rw-r--r-- | fs/ext4/mballoc.c | 15 |
1 files changed, 4 insertions, 11 deletions
diff --git a/fs/ext4/mballoc.c b/fs/ext4/mballoc.c index 1efcb934c2d6..9d57695de746 100644 --- a/fs/ext4/mballoc.c +++ b/fs/ext4/mballoc.c | |||
@@ -2449,17 +2449,10 @@ static void ext4_mb_history_init(struct super_block *sb) | |||
2449 | int i; | 2449 | int i; |
2450 | 2450 | ||
2451 | if (sbi->s_mb_proc != NULL) { | 2451 | if (sbi->s_mb_proc != NULL) { |
2452 | struct proc_dir_entry *p; | 2452 | proc_create_data("mb_history", S_IRUGO, sbi->s_mb_proc, |
2453 | p = create_proc_entry("mb_history", S_IRUGO, sbi->s_mb_proc); | 2453 | &ext4_mb_seq_history_fops, sb); |
2454 | if (p) { | 2454 | proc_create_data("mb_groups", S_IRUGO, sbi->s_mb_proc, |
2455 | p->proc_fops = &ext4_mb_seq_history_fops; | 2455 | &ext4_mb_seq_groups_fops, sb); |
2456 | p->data = sb; | ||
2457 | } | ||
2458 | p = create_proc_entry("mb_groups", S_IRUGO, sbi->s_mb_proc); | ||
2459 | if (p) { | ||
2460 | p->proc_fops = &ext4_mb_seq_groups_fops; | ||
2461 | p->data = sb; | ||
2462 | } | ||
2463 | } | 2456 | } |
2464 | 2457 | ||
2465 | sbi->s_mb_history_max = 1000; | 2458 | sbi->s_mb_history_max = 1000; |