diff options
Diffstat (limited to 'fs')
-rw-r--r-- | fs/ext4/super.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/fs/ext4/super.c b/fs/ext4/super.c index 1ca0f546c466..ab7010dde1b5 100644 --- a/fs/ext4/super.c +++ b/fs/ext4/super.c | |||
@@ -1624,6 +1624,11 @@ static int ext4_fill_super (struct super_block *sb, void *data, int silent) | |||
1624 | goto out_fail; | 1624 | goto out_fail; |
1625 | } | 1625 | } |
1626 | 1626 | ||
1627 | if (!sb_set_blocksize(sb, blocksize)) { | ||
1628 | printk(KERN_ERR "EXT4-fs: bad blocksize %d.\n", blocksize); | ||
1629 | goto out_fail; | ||
1630 | } | ||
1631 | |||
1627 | /* | 1632 | /* |
1628 | * The ext4 superblock will not be buffer aligned for other than 1kB | 1633 | * The ext4 superblock will not be buffer aligned for other than 1kB |
1629 | * block sizes. We need to calculate the offset from buffer start. | 1634 | * block sizes. We need to calculate the offset from buffer start. |