]> git.proxmox.com Git - mirror_ubuntu-focal-kernel.git/commitdiff
ubifs: Limit the number of pages in shrink_liability
authorLiu Song <liu.song11@zte.com.cn>
Tue, 6 Aug 2019 14:21:40 +0000 (22:21 +0800)
committerRichard Weinberger <richard@nod.at>
Thu, 22 Aug 2019 15:25:33 +0000 (17:25 +0200)
If the number of dirty pages to be written back is large,
then writeback_inodes_sb will block waiting for a long time,
causing hung task detection alarm. Therefore, we should limit
the maximum number of pages written back this time, which let
the budget be completed faster. The remaining dirty pages
tend to rely on the writeback mechanism to complete the
synchronization.

Fixes: b6e51316daed ("writeback: separate starting of sync vs opportunistic writeback")
Signed-off-by: Liu Song <liu.song11@zte.com.cn>
Signed-off-by: Richard Weinberger <richard@nod.at>
fs/ubifs/budget.c

index 80d7301ab76d0c74a8b90cc9bee1c23aa9fbe24b..c0b84e960b20c138b1e3fe1cfe77c13f32a9428e 100644 (file)
@@ -51,7 +51,7 @@
 static void shrink_liability(struct ubifs_info *c, int nr_to_write)
 {
        down_read(&c->vfs_sb->s_umount);
-       writeback_inodes_sb(c->vfs_sb, WB_REASON_FS_FREE_SPACE);
+       writeback_inodes_sb_nr(c->vfs_sb, nr_to_write, WB_REASON_FS_FREE_SPACE);
        up_read(&c->vfs_sb->s_umount);
 }