diff options
-rw-r--r-- | fs/ext4/super.c | 5 | ||||
-rw-r--r-- | include/linux/ext4_fs.h | 4 |
2 files changed, 7 insertions, 2 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. |
diff --git a/include/linux/ext4_fs.h b/include/linux/ext4_fs.h index 97dd409d5f4a..dfe4487fc739 100644 --- a/include/linux/ext4_fs.h +++ b/include/linux/ext4_fs.h | |||
@@ -73,8 +73,8 @@ | |||
73 | * Macro-instructions used to manage several block sizes | 73 | * Macro-instructions used to manage several block sizes |
74 | */ | 74 | */ |
75 | #define EXT4_MIN_BLOCK_SIZE 1024 | 75 | #define EXT4_MIN_BLOCK_SIZE 1024 |
76 | #define EXT4_MAX_BLOCK_SIZE 4096 | 76 | #define EXT4_MAX_BLOCK_SIZE 65536 |
77 | #define EXT4_MIN_BLOCK_LOG_SIZE 10 | 77 | #define EXT4_MIN_BLOCK_LOG_SIZE 10 |
78 | #ifdef __KERNEL__ | 78 | #ifdef __KERNEL__ |
79 | # define EXT4_BLOCK_SIZE(s) ((s)->s_blocksize) | 79 | # define EXT4_BLOCK_SIZE(s) ((s)->s_blocksize) |
80 | #else | 80 | #else |