On Wed 18-10-23 19:42:21, Baokun Li wrote:Thank you very much for your careful review!
When a large flex_bg file system is resized, the number of groups to beLooks good, just one small comment below. Feel free to add:
added may be small, and a large amount of memory that will not be used will
be allocated. Therefore, resize_bg can be set to the size after the number
of new_group_data to be used is aligned upwards to the power of 2. This
does not affect the disk layout after online resize and saves some memory.
Signed-off-by: Baokun Li <libaokun1@xxxxxxxxxx>
Reviewed-by: Jan Kara <jack@xxxxxxx>
@@ -248,6 +250,14 @@ static struct ext4_new_flex_group_data *alloc_flex_gd(unsigned int flexbg_size)Perhaps make the comment more understandable like:
else
flex_gd->resize_bg = flexbg_size;
+ /* Avoid allocating new groups that will not be used. */
/* Avoid allocating large 'groups' array if not needed */
Honza