From: Shakeel Butt <shakeel.butt@linux.dev>
To: Vlastimil Babka <vbabka@suse.cz>
Cc: Andrew Morton <akpm@linux-foundation.org>,
Johannes Weiner <hannes@cmpxchg.org>,
Michal Hocko <mhocko@kernel.org>,
Roman Gushchin <roman.gushchin@linux.dev>,
Muchun Song <muchun.song@linux.dev>,
Sebastian Andrzej Siewior <bigeasy@linutronix.de>,
linux-mm@kvack.org, cgroups@vger.kernel.org,
linux-kernel@vger.kernel.org,
Meta kernel team <kernel-team@meta.com>,
bpf <bpf@vger.kernel.org>
Subject: Re: [PATCH 2/4] memcg: separate local_trylock for memcg and obj
Date: Wed, 30 Apr 2025 08:03:09 -0700 [thread overview]
Message-ID: <s636pqlp5tfg6p2vt3argmqyysx5d72jtwjpekk5nj7yerbolf@vco5fbwicubb> (raw)
In-Reply-To: <a9977cb2-3dce-4be1-81a3-23e760082922@suse.cz>
On Wed, Apr 30, 2025 at 01:42:47PM +0200, Vlastimil Babka wrote:
> On 4/30/25 01:04, Shakeel Butt wrote:
> > The per-cpu stock_lock protects cached memcg and cached objcg and their
> > respective fields. However there is no dependency between these fields
> > and it is better to have fine grained separate locks for cached memcg
> > and cached objcg. This decoupling of locks allows us to make the memcg
> > charge cache and objcg charge cache to be nmi safe independently.
> >
> > At the moment, memcg charge cache is already nmi safe and this
> > decoupling will allow to make memcg charge cache work without disabling
> > irqs.
> >
> > Signed-off-by: Shakeel Butt <shakeel.butt@linux.dev>
> > ---
> > mm/memcontrol.c | 52 +++++++++++++++++++++++++++----------------------
> > 1 file changed, 29 insertions(+), 23 deletions(-)
>
> > @@ -1883,19 +1885,22 @@ static void drain_local_stock(struct work_struct *dummy)
> > struct memcg_stock_pcp *stock;
> > unsigned long flags;
> >
> > - /*
> > - * The only protection from cpu hotplug (memcg_hotplug_cpu_dead) vs.
> > - * drain_stock races is that we always operate on local CPU stock
> > - * here with IRQ disabled
> > - */
> > - local_lock_irqsave(&memcg_stock.stock_lock, flags);
> > + if (WARN_ONCE(!in_task(), "drain in non-task context"))
> > + return;
> >
> > + preempt_disable();
> > stock = this_cpu_ptr(&memcg_stock);
> > +
> > + local_lock_irqsave(&memcg_stock.obj_lock, flags);
> > drain_obj_stock(stock);
> > + local_unlock_irqrestore(&memcg_stock.obj_lock, flags);
> > +
> > + local_lock_irqsave(&memcg_stock.memcg_lock, flags);
> > drain_stock_fully(stock);
> > - clear_bit(FLUSHING_CACHED_CHARGE, &stock->flags);
> > + local_unlock_irqrestore(&memcg_stock.memcg_lock, flags);
> >
> > - local_unlock_irqrestore(&memcg_stock.stock_lock, flags);
> > + clear_bit(FLUSHING_CACHED_CHARGE, &stock->flags);
> > + preempt_enable();
>
> This usage of preempt_disable() looks rather weird and makes RT unhappy as
> the local lock is a mutex, so it gives you this:
>
> BUG: sleeping function called from invalid context at
> kernel/locking/spinlock_rt.c:48
>
> I know the next patch removes it again but for bisectability purposes it
> should be avoided. Instead of preempt_disable() we can extend the local lock
> scope here?
>
Indeed and thanks for the suggestion, will fix in v2.
next prev parent reply other threads:[~2025-04-30 15:03 UTC|newest]
Thread overview: 14+ messages / expand[flat|nested] mbox.gz Atom feed top
2025-04-29 23:04 [PATCH 0/4] memcg: decouple memcg and objcg stocks Shakeel Butt
2025-04-29 23:04 ` [PATCH 1/4] memcg: simplify consume_stock Shakeel Butt
2025-04-29 23:51 ` Alexei Starovoitov
2025-04-30 4:37 ` Shakeel Butt
2025-04-30 15:11 ` Sebastian Andrzej Siewior
2025-04-29 23:04 ` [PATCH 2/4] memcg: separate local_trylock for memcg and obj Shakeel Butt
2025-04-30 11:42 ` Vlastimil Babka
2025-04-30 15:03 ` Shakeel Butt [this message]
2025-04-29 23:04 ` [PATCH 3/4] memcg: completely decouple memcg and obj stocks Shakeel Butt
2025-04-30 12:21 ` Vlastimil Babka
2025-04-29 23:04 ` [PATCH 4/4] memcg: no irq disable for memcg stock lock Shakeel Butt
2025-04-30 12:26 ` Vlastimil Babka
2025-05-06 22:55 [PATCH v3 0/4] memcg: decouple memcg and objcg stocks Shakeel Butt
2025-05-06 22:55 ` [PATCH 2/4] memcg: separate local_trylock for memcg and obj Shakeel Butt
2025-05-07 11:46 ` Vlastimil Babka
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=s636pqlp5tfg6p2vt3argmqyysx5d72jtwjpekk5nj7yerbolf@vco5fbwicubb \
--to=shakeel.butt@linux.dev \
--cc=akpm@linux-foundation.org \
--cc=bigeasy@linutronix.de \
--cc=bpf@vger.kernel.org \
--cc=cgroups@vger.kernel.org \
--cc=hannes@cmpxchg.org \
--cc=kernel-team@meta.com \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-mm@kvack.org \
--cc=mhocko@kernel.org \
--cc=muchun.song@linux.dev \
--cc=roman.gushchin@linux.dev \
--cc=vbabka@suse.cz \
/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