The patch titled Subject: writeback: rename domain_update_bandwidth() has been added to the -mm tree. Its filename is writeback-rename-domain_update_bandwidth.patch This patch should soon appear at https://ozlabs.org/~akpm/mmots/broken-out/writeback-rename-domain_update_bandwidth.patch and later at https://ozlabs.org/~akpm/mmotm/broken-out/writeback-rename-domain_update_bandwidth.patch Before you just go and hit "reply", please: a) Consider who else should be cc'ed b) Prefer to cc a suitable mailing list as well c) Ideally: find the original patch on the mailing list and do a reply-to-all to that, adding suitable additional cc's *** Remember to use Documentation/process/submit-checklist.rst when testing your code *** The -mm tree is included into linux-next and is updated there every 3-4 working days ------------------------------------------------------ From: Jan Kara <jack@xxxxxxx> Subject: writeback: rename domain_update_bandwidth() Rename domain_update_bandwidth() to domain_update_dirty_limit(). The original name is a misnomer. The function has nothing to do with a bandwidth, it updates dirty limits. Link: https://lkml.kernel.org/r/20210713104716.22868-4-jack@xxxxxxx Signed-off-by: Jan Kara <jack@xxxxxxx> Cc: Michael Stapelberg <stapelberg+linux@xxxxxxxxxx> Cc: Wu Fengguang <fengguang.wu@xxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- mm/page-writeback.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) --- a/mm/page-writeback.c~writeback-rename-domain_update_bandwidth +++ a/mm/page-writeback.c @@ -1147,8 +1147,8 @@ update: dom->dirty_limit = limit; } -static void domain_update_bandwidth(struct dirty_throttle_control *dtc, - unsigned long now) +static void domain_update_dirty_limit(struct dirty_throttle_control *dtc, + unsigned long now) { struct wb_domain *dom = dtc_dom(dtc); @@ -1345,7 +1345,7 @@ static void __wb_update_bandwidth(struct written = percpu_counter_read(&wb->stat[WB_WRITTEN]); if (update_ratelimit) { - domain_update_bandwidth(gdtc, now); + domain_update_dirty_limit(gdtc, now); wb_update_dirty_ratelimit(gdtc, dirtied, elapsed); /* @@ -1353,7 +1353,7 @@ static void __wb_update_bandwidth(struct * compiler has no way to figure that out. Help it. */ if (IS_ENABLED(CONFIG_CGROUP_WRITEBACK) && mdtc) { - domain_update_bandwidth(mdtc, now); + domain_update_dirty_limit(mdtc, now); wb_update_dirty_ratelimit(mdtc, dirtied, elapsed); } } _ Patches currently in -mm which might be from jack@xxxxxxx are writeback-track-number-of-inodes-under-writeback.patch writeback-reliably-update-bandwidth-estimation.patch writeback-fix-bandwidth-estimate-for-spiky-workload.patch writeback-rename-domain_update_bandwidth.patch writeback-use-read_once-for-unlocked-reads-of-writeback-stats.patch