Re: [PATCH v1 07/12] f2fs: cache: use node cache

From: Chao Yu

Date: Mon Aug 24 2026 - 03:14:01 EST


On 8/23/26 20:59, Wenjie Qi wrote:
Hi Chao,

out_err:
f2fs_clear_cache_dirty(entry);

Both the inode-checksum and footer-validation failure paths reach this label.
`f2fs_clear_cache_dirty()` clears the DIRTY state bit, but it does not clear
UPTODATE or synchronize the DIRTY radix tag and dirty-node counter.

What invariant keeps these states consistent after node validation fails?

Will fix.

Thanks,