Linux cgroups development
 help / color / mirror / Atom feed
From: Tejun Heo <tj@kernel.org>
To: Julian Sun <sunjunchao@bytedance.com>
Cc: linux-mm@kvack.org, cgroups@vger.kernel.org, hannes@cmpxchg.org,
	mhocko@kernel.org, roman.gushchin@linux.dev,
	shakeel.butt@linux.dev, muchun.song@linux.dev,
	akpm@linux-foundation.org, axboe@kernel.dk, jack@suse.cz
Subject: Re: [External] Re: [PATCH v2] writeback, memcg: skip foreign dirty tracking for bdev inodes
Date: Thu, 3 Sep 2026 20:36:04 -1000	[thread overview]
Message-ID: <appm1E4rzQQB_srX@slm.duckdns.org> (raw)
In-Reply-To: <3a7ca3ba-d2e6-40a1-95b2-4d0ee93d4242@bytedance.com>

Hello,

On Fri, Sep 04, 2026 at 12:34:27PM +0800, Julian Sun wrote:
...
> > Was this reproduced from an actual workload with adverse effects? If so, can
> > you please explain the workload and effects with concrete details?
> 
> Yes, this can be reproduced on many production machines. On one production
> machine, we observed 102 wb works with WB_REASON_FOREIGN_FLUSH as their
> reason, 101 of which belonged to the same wb. This wb was the owner of the
> bdev inode, and dirty pages were continuously being generated for it.

This is the mechanism triggering.

> The logic here is that, Once a memcg has recorded the owner wb of a bdev
> inode as foreign, any task in that memcg that reaches the throttling path in
> balance_dirty_pages() may queue one WB_REASON_FOREIGN_FLUSH work item for
> each recently recorded foreign wb, up to four in total, without checking
> whether those target wbs caused the current dirty throttling.
> 
> On this machine, the total nr_pages of the foreign-flush works was
> 630,681,285, or about 2.4 TiB, while the machine had only 400 GiB of memory.
> Although nr_pages does not represent the number of dirty pages that will
> ultimately be written back, the actual number of pages written back may
> still be very large because the corresponding wb was continuously
> accumulating dirty pages.

Is this necessarily an adverse effect tho? These are all metadata flushes,
right? When they're gonna get written might change but do the extra flushes
change how much is going to be written? If so, how? If not, are the extra
flushes adding noticeable overhead in terms of cpu or io?

> > > Skip foreign dirty tracking when the folio mapping's host inode is on the
> > > blockdev pseudo superblock. This prevents bdev-originated records from
> > > triggering later foreign flushes.
> > 
> > If you do this, tho, that means now cgroups that accumulated a lot of
> > metadata writes on ext4 and crunched for memory don't have a way to relieve
> > the pressure outside of periodic or other lucky flushes. ie. I have a hard
> > time judging whether this is net plus or not without learning more about how
> > this patch came to be.
> 
> How about this approach? Before queuing a WB_REASON_FOREIGN_FLUSH work item,
> check the target wb and avoid queuing another one if it already has an
> unfinished WB_REASON_FOREIGN_FLUSH work item.
> 
> This approach can eliminate a large number of duplicate foreign flushes, but
> one issue remains: a memcg may dirty only a small number of pages in a bdev
> inode, and when that memcg enters dirty throttling, the throttling may be
> completely unrelated to the wb that owns the bdev inode, yet a foreign flush
> is still queued to that wb. This problem becomes more pronounced when the wb
> has a large number of dirty pages. Perhaps we should track the number of
> foreign pages in the memcg and avoid issuing a foreign flush when the number
> is below a certain percentage?

Yeah, maybe, but I'm kinda having a hard time evaluating anything as the
mental picture I have of the problem is too incomplete. Please fill us in.

Thanks.

-- 
tejun

  reply	other threads:[~2026-09-04  6:36 UTC|newest]

Thread overview: 9+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2026-09-03  8:33 [PATCH v2] writeback, memcg: skip foreign dirty tracking for bdev inodes Julian Sun
2026-09-03 19:34 ` Andrew Morton
2026-09-04  3:39   ` [External] " Julian Sun
2026-09-04  9:00     ` Jan Kara
2026-09-05 11:35       ` Julian Sun
2026-09-03 20:29 ` Tejun Heo
2026-09-04  4:34   ` [External] " Julian Sun
2026-09-04  6:36     ` Tejun Heo [this message]
2026-09-05 11:31       ` Julian Sun

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=appm1E4rzQQB_srX@slm.duckdns.org \
    --to=tj@kernel.org \
    --cc=akpm@linux-foundation.org \
    --cc=axboe@kernel.dk \
    --cc=cgroups@vger.kernel.org \
    --cc=hannes@cmpxchg.org \
    --cc=jack@suse.cz \
    --cc=linux-mm@kvack.org \
    --cc=mhocko@kernel.org \
    --cc=muchun.song@linux.dev \
    --cc=roman.gushchin@linux.dev \
    --cc=shakeel.butt@linux.dev \
    --cc=sunjunchao@bytedance.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox