File tree Expand file tree Collapse file tree 1 file changed +6
-1
lines changed Expand file tree Collapse file tree 1 file changed +6
-1
lines changed Original file line number Diff line number Diff line change @@ -2720,6 +2720,7 @@ ext4_mb_free_committed_blocks(struct super_block *sb)
2720
2720
2721
2721
static int ext4_mb_init_per_dev_proc (struct super_block * sb )
2722
2722
{
2723
+ #ifdef CONFIG_PROC_FS
2723
2724
mode_t mode = S_IFREG | S_IRUGO | S_IWUSR ;
2724
2725
struct ext4_sb_info * sbi = EXT4_SB (sb );
2725
2726
struct proc_dir_entry * proc ;
@@ -2743,10 +2744,14 @@ static int ext4_mb_init_per_dev_proc(struct super_block *sb)
2743
2744
remove_proc_entry (EXT4_MB_MAX_TO_SCAN_NAME , sbi -> s_proc );
2744
2745
remove_proc_entry (EXT4_MB_STATS_NAME , sbi -> s_proc );
2745
2746
return - ENOMEM ;
2747
+ #else
2748
+ return 0 ;
2749
+ #endif
2746
2750
}
2747
2751
2748
2752
static int ext4_mb_destroy_per_dev_proc (struct super_block * sb )
2749
2753
{
2754
+ #ifdef CONFIG_PROC_FS
2750
2755
struct ext4_sb_info * sbi = EXT4_SB (sb );
2751
2756
2752
2757
if (sbi -> s_proc == NULL )
@@ -2758,7 +2763,7 @@ static int ext4_mb_destroy_per_dev_proc(struct super_block *sb)
2758
2763
remove_proc_entry (EXT4_MB_MIN_TO_SCAN_NAME , sbi -> s_proc );
2759
2764
remove_proc_entry (EXT4_MB_MAX_TO_SCAN_NAME , sbi -> s_proc );
2760
2765
remove_proc_entry (EXT4_MB_STATS_NAME , sbi -> s_proc );
2761
-
2766
+ #endif
2762
2767
return 0 ;
2763
2768
}
2764
2769
You can’t perform that action at this time.
0 commit comments