On Sun, May 07, 2023 at 08:18:16PM +0200, Jan Kara wrote: > The patch looks good except for one small problem already found by Julia: > > > @@ -2578,7 +2595,7 @@ void ext4_mb_prefetch_fini(struct super_block *sb, ext4_group_t group, > > gdp = ext4_get_group_desc(sb, group, NULL); > > grp = ext4_get_group_info(sb, group); > > > > - if (EXT4_MB_GRP_NEED_INIT(grp) && > > + if (grp && grp && EXT4_MB_GRP_NEED_INIT(grp) && > ^^^ one of these should be gdp. > > With this fixed feel free to add: > > Reviewed-by: Jan Kara <jack@xxxxxxx> Thanks for the review, fixed in my tree. - Ted