On Fri, Mar 14, 2025 at 05:11:43PM +0530, Ojaswin Mujoo wrote: > Currently, we access journal ino through sbi->s_es->s_journal_inum, > which directly reads from the ext4 sb buffer head. If someone modifies > this underneath us then the s_journal_inum field might get corrupted. > > Although direct block device modifications can be expected to cause > issues in the FS, let's cache s_journal_inum in sbi->s_journal_ino so > our checks can be more resillient. The reason why the block validity checks need to check against s_journal_ino is to exempt the lookups done by ext4_journal_bmap() from running afoul of the system zone checks, since the journal's data blocks are considered part of the system zone. So this is something we need to do if the journal is actived, and if it's active, then sbi->s_journal will be non-NULL, and so we can just check to see if inode == sbi->s_journal instead. This will simplify the code, without needing to expand the ext4_sb_info structure. Cheers, - Ted