mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2025-01-24 03:59:47 +07:00
f2fs: remove checking dirty_exceed
We don't need to force to write dirty_exceeded for f2fs_balance_fs_bg. This flag was only meaningful to write bypassing conditions. Signed-off-by: Jaegeuk Kim <jaegeuk@kernel.org>
This commit is contained in:
parent
b3d574aec7
commit
cd52b6368f
@ -57,8 +57,6 @@ bool available_free_memory(struct f2fs_sb_info *sbi, int type)
|
|||||||
} else if (type == INO_ENTRIES) {
|
} else if (type == INO_ENTRIES) {
|
||||||
int i;
|
int i;
|
||||||
|
|
||||||
if (sbi->sb->s_bdi->dirty_exceeded)
|
|
||||||
return false;
|
|
||||||
for (i = 0; i <= UPDATE_INO; i++)
|
for (i = 0; i <= UPDATE_INO; i++)
|
||||||
mem_size += (sbi->im[i].ino_num *
|
mem_size += (sbi->im[i].ino_num *
|
||||||
sizeof(struct ino_entry)) >> PAGE_CACHE_SHIFT;
|
sizeof(struct ino_entry)) >> PAGE_CACHE_SHIFT;
|
||||||
|
Loading…
Reference in New Issue
Block a user