* [PATCH v2] iomap: add dirty page control to iomap_zero_iter
@ 2026-05-11 9:40 Chi Zhiling
2026-05-11 12:10 ` Christoph Hellwig
2026-05-11 13:35 ` Christian Brauner
0 siblings, 2 replies; 3+ messages in thread
From: Chi Zhiling @ 2026-05-11 9:40 UTC (permalink / raw)
To: linux-fsdevel, linux-kernel, linux-xfs
Cc: brauner, chizhiling, djwong, hch, linkinjeon, sj1557.seo,
yuezhang.mo
From: Chi Zhiling <chizhiling@kylinos.cn>
This patch prepares the iomap framework for exFAT's upcoming migration to
iomap. During testing of the exFAT iomap branch with xfstests generic/299 on
a VM with 8GB RAM and a 40GB disk, system unresponsiveness was observed.
iomap_zero_iter() lacked dirty page throttling, which could cause memory
pressure when exFAT's valid_size mechanism triggers large-scale zeroing
operations during writes beyond valid_size.
Align iomap_zero_iter() with iomap_write_iter() by adding
balance_dirty_pages_ratelimited() to throttle dirty page generation during
large zeroing operations
Signed-off-by: Chi Zhiling <chizhiling@kylinos.cn>
Cc: Namjae Jeon <linkinjeon@kernel.org>
---
v1:
https://lore.kernel.org/linux-fsdevel/00f28748-8244-4fb7-a61d-a08bf90630a9@163.com/T/#t
exFAT iomap migration:
https://lore.kernel.org/linux-fsdevel/20260507124238.7313-1-linkinjeon@kernel.org/
fs/iomap/buffered-io.c | 2 ++
1 file changed, 2 insertions(+)
diff --git a/fs/iomap/buffered-io.c b/fs/iomap/buffered-io.c
index d7b648421a70..437a7c527c4a 100644
--- a/fs/iomap/buffered-io.c
+++ b/fs/iomap/buffered-io.c
@@ -1543,6 +1543,8 @@ static int iomap_zero_iter(struct iomap_iter *iter, bool *did_zero,
size_t offset;
bool ret;
+ balance_dirty_pages_ratelimited(iter->inode->i_mapping);
+
bytes = min_t(u64, SIZE_MAX, bytes);
status = iomap_write_begin(iter, write_ops, &folio, &offset,
&bytes);
--
2.43.0
^ permalink raw reply related [flat|nested] 3+ messages in thread
* Re: [PATCH v2] iomap: add dirty page control to iomap_zero_iter
2026-05-11 9:40 [PATCH v2] iomap: add dirty page control to iomap_zero_iter Chi Zhiling
@ 2026-05-11 12:10 ` Christoph Hellwig
2026-05-11 13:35 ` Christian Brauner
1 sibling, 0 replies; 3+ messages in thread
From: Christoph Hellwig @ 2026-05-11 12:10 UTC (permalink / raw)
To: Chi Zhiling
Cc: linux-fsdevel, linux-kernel, linux-xfs, brauner, chizhiling,
djwong, hch, linkinjeon, sj1557.seo, yuezhang.mo
Looks good:
Reviewed-by: Christoph Hellwig <hch@lst.de>
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [PATCH v2] iomap: add dirty page control to iomap_zero_iter
2026-05-11 9:40 [PATCH v2] iomap: add dirty page control to iomap_zero_iter Chi Zhiling
2026-05-11 12:10 ` Christoph Hellwig
@ 2026-05-11 13:35 ` Christian Brauner
1 sibling, 0 replies; 3+ messages in thread
From: Christian Brauner @ 2026-05-11 13:35 UTC (permalink / raw)
To: linux-fsdevel, linux-kernel, linux-xfs, Chi Zhiling
Cc: Christian Brauner, chizhiling, djwong, hch, linkinjeon,
sj1557.seo, yuezhang.mo
On Mon, 11 May 2026 17:40:07 +0800, Chi Zhiling wrote:
> This patch prepares the iomap framework for exFAT's upcoming migration to
> iomap. During testing of the exFAT iomap branch with xfstests generic/299 on
> a VM with 8GB RAM and a 40GB disk, system unresponsiveness was observed.
>
> iomap_zero_iter() lacked dirty page throttling, which could cause memory
> pressure when exFAT's valid_size mechanism triggers large-scale zeroing
> operations during writes beyond valid_size.
>
> [...]
Applied to the vfs-7.2.iomap branch of the vfs/vfs.git tree.
Patches in the vfs-7.2.iomap branch should appear in linux-next soon.
Please report any outstanding bugs that were missed during review in a
new review to the original patch series allowing us to drop it.
It's encouraged to provide Acked-bys and Reviewed-bys even though the
patch has now been applied. If possible patch trailers will be updated.
Note that commit hashes shown below are subject to change due to rebase,
trailer updates or similar. If in doubt, please check the listed branch.
tree: https://git.kernel.org/pub/scm/linux/kernel/git/vfs/vfs.git
branch: vfs-7.2.iomap
[1/1] iomap: add dirty page control to iomap_zero_iter
https://git.kernel.org/vfs/vfs/c/ecf22101ba7a
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2026-05-11 13:35 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-05-11 9:40 [PATCH v2] iomap: add dirty page control to iomap_zero_iter Chi Zhiling
2026-05-11 12:10 ` Christoph Hellwig
2026-05-11 13:35 ` Christian Brauner
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox