diff options
Diffstat (limited to 'include/linux/ext4_fs_sb.h')
-rw-r--r-- | include/linux/ext4_fs_sb.h | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/include/linux/ext4_fs_sb.h b/include/linux/ext4_fs_sb.h index ce4856d70100..ce7a844d6703 100644 --- a/include/linux/ext4_fs_sb.h +++ b/include/linux/ext4_fs_sb.h | |||
@@ -78,6 +78,16 @@ struct ext4_sb_info { | |||
78 | char *s_qf_names[MAXQUOTAS]; /* Names of quota files with journalled quota */ | 78 | char *s_qf_names[MAXQUOTAS]; /* Names of quota files with journalled quota */ |
79 | int s_jquota_fmt; /* Format of quota to use */ | 79 | int s_jquota_fmt; /* Format of quota to use */ |
80 | #endif | 80 | #endif |
81 | |||
82 | #ifdef EXTENTS_STATS | ||
83 | /* ext4 extents stats */ | ||
84 | unsigned long s_ext_min; | ||
85 | unsigned long s_ext_max; | ||
86 | unsigned long s_depth_max; | ||
87 | spinlock_t s_ext_stats_lock; | ||
88 | unsigned long s_ext_blocks; | ||
89 | unsigned long s_ext_extents; | ||
90 | #endif | ||
81 | }; | 91 | }; |
82 | 92 | ||
83 | #endif /* _LINUX_EXT4_FS_SB */ | 93 | #endif /* _LINUX_EXT4_FS_SB */ |