Re: [PATCH 3/4] ext4: use more strict checks for inodes_per_block on mount
From: Theodore Ts'o <tytso@mit.edu>
Date: 2016-11-18 21:56:35
Also in:
stable
From: Theodore Ts'o <tytso@mit.edu>
Date: 2016-11-18 21:56:35
Also in:
stable
On Fri, Nov 18, 2016 at 12:30:46PM -0800, Eric Biggers wrote:
On Fri, Nov 18, 2016 at 01:38:41PM -0500, Theodore Ts'o wrote:quoted
Centralize the checks for inodes_per_block and be more strict to make sure the inodes_per_block_group can't end up being zero.Nit: this should say 's_inodes_per_group', not 'inodes_per_block_group'.quoted
+ sbi->s_inodes_per_group > blocksize * 8) { + ext4_msg(sb, KERN_ERR, "invalid inodes per group: %lu\n", + sbi->s_blocks_per_group); + goto failed_mount; + }Should print out s_inodes_per_group, not s_blocks_per_group.
Thanks, good catch. I'll fix both of these. - Ted