mirror of
https://github.com/FEX-Emu/linux.git
synced 2025-03-06 19:51:13 +00:00
f2fs: fix por_doing variable coverage
The reason of using sbi->por_doing is to alleviate data writes during the recovery. The find_fsync_dnodes() produces some dirty dentry pages, so we should cover it too with sbi->por_doing. Signed-off-by: Jaegeuk Kim <jaegeuk.kim@samsung.com>
This commit is contained in:
parent
addbe45b00
commit
8c26d7d571
@ -381,6 +381,7 @@ int recover_fsync_data(struct f2fs_sb_info *sbi)
|
|||||||
INIT_LIST_HEAD(&inode_list);
|
INIT_LIST_HEAD(&inode_list);
|
||||||
|
|
||||||
/* step #1: find fsynced inode numbers */
|
/* step #1: find fsynced inode numbers */
|
||||||
|
sbi->por_doing = 1;
|
||||||
err = find_fsync_dnodes(sbi, &inode_list);
|
err = find_fsync_dnodes(sbi, &inode_list);
|
||||||
if (err)
|
if (err)
|
||||||
goto out;
|
goto out;
|
||||||
@ -389,13 +390,12 @@ int recover_fsync_data(struct f2fs_sb_info *sbi)
|
|||||||
goto out;
|
goto out;
|
||||||
|
|
||||||
/* step #2: recover data */
|
/* step #2: recover data */
|
||||||
sbi->por_doing = 1;
|
|
||||||
err = recover_data(sbi, &inode_list, CURSEG_WARM_NODE);
|
err = recover_data(sbi, &inode_list, CURSEG_WARM_NODE);
|
||||||
sbi->por_doing = 0;
|
|
||||||
BUG_ON(!list_empty(&inode_list));
|
BUG_ON(!list_empty(&inode_list));
|
||||||
out:
|
out:
|
||||||
destroy_fsync_dnodes(sbi, &inode_list);
|
destroy_fsync_dnodes(sbi, &inode_list);
|
||||||
kmem_cache_destroy(fsync_entry_slab);
|
kmem_cache_destroy(fsync_entry_slab);
|
||||||
|
sbi->por_doing = 0;
|
||||||
write_checkpoint(sbi, false);
|
write_checkpoint(sbi, false);
|
||||||
return err;
|
return err;
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user