diff options
Diffstat (limited to 'fs/ext4/super.c')
-rw-r--r-- | fs/ext4/super.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/ext4/super.c b/fs/ext4/super.c index 0e829cc8a18a..4c8d31c61454 100644 --- a/fs/ext4/super.c +++ b/fs/ext4/super.c | |||
@@ -1738,7 +1738,7 @@ static int ext4_fill_super (struct super_block *sb, void *data, int silent) | |||
1738 | if (EXT4_HAS_INCOMPAT_FEATURE(sb, EXT4_FEATURE_INCOMPAT_64BIT)) { | 1738 | if (EXT4_HAS_INCOMPAT_FEATURE(sb, EXT4_FEATURE_INCOMPAT_64BIT)) { |
1739 | if (sbi->s_desc_size < EXT4_MIN_DESC_SIZE_64BIT || | 1739 | if (sbi->s_desc_size < EXT4_MIN_DESC_SIZE_64BIT || |
1740 | sbi->s_desc_size > EXT4_MAX_DESC_SIZE || | 1740 | sbi->s_desc_size > EXT4_MAX_DESC_SIZE || |
1741 | sbi->s_desc_size & (sbi->s_desc_size - 1)) { | 1741 | !is_power_of_2(sbi->s_desc_size)) { |
1742 | printk(KERN_ERR | 1742 | printk(KERN_ERR |
1743 | "EXT4-fs: unsupported descriptor size %lu\n", | 1743 | "EXT4-fs: unsupported descriptor size %lu\n", |
1744 | sbi->s_desc_size); | 1744 | sbi->s_desc_size); |