mirror of
https://github.com/torvalds/linux.git
synced 2026-07-27 09:36:22 +02:00
f2fs: remove non-uptodate folio from the page cache in move_data_block
During data movement, move_data_block acquires file folio without triggering a file read. Such folio are typically not uptodate, they need to be removed from the page cache after gc complete. This patch marks folio with the PG_dropbehind flag and uses folio_end_dropbehind to remove folio from the page cache. Signed-off-by: Yunlei He <heyunlei@xiaomi.com> Signed-off-by: Yongpeng Yang <yangyongpeng@xiaomi.com> Reviewed-by: Chao Yu <chao@kernel.org> Signed-off-by: Jaegeuk Kim <jaegeuk@kernel.org>
This commit is contained in:
parent
db1a8a7813
commit
9609dd7047
|
|
@ -1453,7 +1453,11 @@ static int move_data_block(struct inode *inode, block_t bidx,
|
|||
put_out:
|
||||
f2fs_put_dnode(&dn);
|
||||
out:
|
||||
f2fs_folio_put(folio, true);
|
||||
if (!folio_test_uptodate(folio))
|
||||
__folio_set_dropbehind(folio);
|
||||
folio_unlock(folio);
|
||||
folio_end_dropbehind(folio);
|
||||
folio_put(folio);
|
||||
return err;
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user