diff options
Diffstat (limited to 'fs/ext4/extents.c')
-rw-r--r-- | fs/ext4/extents.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/fs/ext4/extents.c b/fs/ext4/extents.c index c64080e49493..240cf0daad4b 100644 --- a/fs/ext4/extents.c +++ b/fs/ext4/extents.c | |||
@@ -2247,7 +2247,7 @@ void ext4_ext_init(struct super_block *sb) | |||
2247 | * possible initialization would be here | 2247 | * possible initialization would be here |
2248 | */ | 2248 | */ |
2249 | 2249 | ||
2250 | if (test_opt(sb, EXTENTS)) { | 2250 | if (EXT4_HAS_INCOMPAT_FEATURE(sb, EXT4_FEATURE_INCOMPAT_EXTENTS)) { |
2251 | printk(KERN_INFO "EXT4-fs: file extents enabled"); | 2251 | printk(KERN_INFO "EXT4-fs: file extents enabled"); |
2252 | #ifdef AGGRESSIVE_TEST | 2252 | #ifdef AGGRESSIVE_TEST |
2253 | printk(", aggressive tests"); | 2253 | printk(", aggressive tests"); |
@@ -2272,7 +2272,7 @@ void ext4_ext_init(struct super_block *sb) | |||
2272 | */ | 2272 | */ |
2273 | void ext4_ext_release(struct super_block *sb) | 2273 | void ext4_ext_release(struct super_block *sb) |
2274 | { | 2274 | { |
2275 | if (!test_opt(sb, EXTENTS)) | 2275 | if (!EXT4_HAS_INCOMPAT_FEATURE(sb, EXT4_FEATURE_INCOMPAT_EXTENTS)) |
2276 | return; | 2276 | return; |
2277 | 2277 | ||
2278 | #ifdef EXTENTS_STATS | 2278 | #ifdef EXTENTS_STATS |