On Mon, Jul 04, 2022 at 02:50:47PM -0600, Andreas Dilger wrote: > > -void ext4_resize_end(struct super_block *sb) > > +int ext4_resize_end(struct super_block *sb, bool update_backups) > > { > > clear_bit_unlock(EXT4_FLAGS_RESIZING, &EXT4_SB(sb)->s_ext4_flags); > > smp_mb__after_atomic(); > > + if (update_backups) > > + return ext4_update_overhead(sb, true); > > + else > > + return 0; > > (style) no need for "else" after return. Good point, I'll make that adjustment. - Ted