* [PATCH] memcg: drain obj stock on cpu hotplug teardown
@ 2025-03-10 23:09 Shakeel Butt
2025-03-11 15:30 ` Johannes Weiner
2025-03-11 16:26 ` Roman Gushchin
0 siblings, 2 replies; 7+ messages in thread
From: Shakeel Butt @ 2025-03-10 23:09 UTC (permalink / raw)
To: Andrew Morton
Cc: Johannes Weiner, Michal Hocko, Roman Gushchin, Muchun Song,
linux-mm, cgroups, linux-kernel, Meta kernel team, stable
Currently on cpu hotplug teardown, only memcg stock is drained but we
need to drain the obj stock as well otherwise we will miss the stats
accumulated on the target cpu as well as the nr_bytes cached. The stats
include MEMCG_KMEM, NR_SLAB_RECLAIMABLE_B & NR_SLAB_UNRECLAIMABLE_B. In
addition we are leaking reference to struct obj_cgroup object.
Fixes: bf4f059954dc ("mm: memcg/slab: obj_cgroup API")
Signed-off-by: Shakeel Butt <shakeel.butt@linux.dev>
Cc: <stable@vger.kernel.org>
---
mm/memcontrol.c | 9 +++++++++
1 file changed, 9 insertions(+)
diff --git a/mm/memcontrol.c b/mm/memcontrol.c
index 4de6acb9b8ec..59dcaf6a3519 100644
--- a/mm/memcontrol.c
+++ b/mm/memcontrol.c
@@ -1921,9 +1921,18 @@ void drain_all_stock(struct mem_cgroup *root_memcg)
static int memcg_hotplug_cpu_dead(unsigned int cpu)
{
struct memcg_stock_pcp *stock;
+ struct obj_cgroup *old;
+ unsigned long flags;
stock = &per_cpu(memcg_stock, cpu);
+
+ /* drain_obj_stock requires stock_lock */
+ local_lock_irqsave(&memcg_stock.stock_lock, flags);
+ old = drain_obj_stock(stock);
+ local_unlock_irqrestore(&memcg_stock.stock_lock, flags);
+
drain_stock(stock);
+ obj_cgroup_put(old);
return 0;
}
--
2.47.1
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [PATCH] memcg: drain obj stock on cpu hotplug teardown
2025-03-10 23:09 [PATCH] memcg: drain obj stock on cpu hotplug teardown Shakeel Butt
@ 2025-03-11 15:30 ` Johannes Weiner
2025-03-11 15:57 ` Shakeel Butt
2025-03-11 16:26 ` Roman Gushchin
1 sibling, 1 reply; 7+ messages in thread
From: Johannes Weiner @ 2025-03-11 15:30 UTC (permalink / raw)
To: Shakeel Butt
Cc: Andrew Morton, Michal Hocko, Roman Gushchin, Muchun Song,
linux-mm, cgroups, linux-kernel, Meta kernel team, stable
On Mon, Mar 10, 2025 at 04:09:34PM -0700, Shakeel Butt wrote:
> Currently on cpu hotplug teardown, only memcg stock is drained but we
> need to drain the obj stock as well otherwise we will miss the stats
> accumulated on the target cpu as well as the nr_bytes cached. The stats
> include MEMCG_KMEM, NR_SLAB_RECLAIMABLE_B & NR_SLAB_UNRECLAIMABLE_B. In
> addition we are leaking reference to struct obj_cgroup object.
>
> Fixes: bf4f059954dc ("mm: memcg/slab: obj_cgroup API")
> Signed-off-by: Shakeel Butt <shakeel.butt@linux.dev>
> Cc: <stable@vger.kernel.org>
Wow, that's old. Good catch.
> ---
> mm/memcontrol.c | 9 +++++++++
> 1 file changed, 9 insertions(+)
>
> diff --git a/mm/memcontrol.c b/mm/memcontrol.c
> index 4de6acb9b8ec..59dcaf6a3519 100644
> --- a/mm/memcontrol.c
> +++ b/mm/memcontrol.c
> @@ -1921,9 +1921,18 @@ void drain_all_stock(struct mem_cgroup *root_memcg)
> static int memcg_hotplug_cpu_dead(unsigned int cpu)
> {
> struct memcg_stock_pcp *stock;
> + struct obj_cgroup *old;
> + unsigned long flags;
>
> stock = &per_cpu(memcg_stock, cpu);
> +
> + /* drain_obj_stock requires stock_lock */
> + local_lock_irqsave(&memcg_stock.stock_lock, flags);
> + old = drain_obj_stock(stock);
> + local_unlock_irqrestore(&memcg_stock.stock_lock, flags);
> +
> drain_stock(stock);
> + obj_cgroup_put(old);
It might be better to call drain_local_stock() directly instead. That
would prevent a bug of this type to reoccur in the future.
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [PATCH] memcg: drain obj stock on cpu hotplug teardown
2025-03-11 15:30 ` Johannes Weiner
@ 2025-03-11 15:57 ` Shakeel Butt
2025-03-11 16:28 ` Roman Gushchin
2025-03-11 17:29 ` Johannes Weiner
0 siblings, 2 replies; 7+ messages in thread
From: Shakeel Butt @ 2025-03-11 15:57 UTC (permalink / raw)
To: Johannes Weiner
Cc: Andrew Morton, Michal Hocko, Roman Gushchin, Muchun Song,
linux-mm, cgroups, linux-kernel, Meta kernel team, stable
On Tue, Mar 11, 2025 at 11:30:32AM -0400, Johannes Weiner wrote:
> On Mon, Mar 10, 2025 at 04:09:34PM -0700, Shakeel Butt wrote:
> > Currently on cpu hotplug teardown, only memcg stock is drained but we
> > need to drain the obj stock as well otherwise we will miss the stats
> > accumulated on the target cpu as well as the nr_bytes cached. The stats
> > include MEMCG_KMEM, NR_SLAB_RECLAIMABLE_B & NR_SLAB_UNRECLAIMABLE_B. In
> > addition we are leaking reference to struct obj_cgroup object.
> >
> > Fixes: bf4f059954dc ("mm: memcg/slab: obj_cgroup API")
> > Signed-off-by: Shakeel Butt <shakeel.butt@linux.dev>
> > Cc: <stable@vger.kernel.org>
>
> Wow, that's old. Good catch.
>
> > ---
> > mm/memcontrol.c | 9 +++++++++
> > 1 file changed, 9 insertions(+)
> >
> > diff --git a/mm/memcontrol.c b/mm/memcontrol.c
> > index 4de6acb9b8ec..59dcaf6a3519 100644
> > --- a/mm/memcontrol.c
> > +++ b/mm/memcontrol.c
> > @@ -1921,9 +1921,18 @@ void drain_all_stock(struct mem_cgroup *root_memcg)
> > static int memcg_hotplug_cpu_dead(unsigned int cpu)
> > {
> > struct memcg_stock_pcp *stock;
> > + struct obj_cgroup *old;
> > + unsigned long flags;
> >
> > stock = &per_cpu(memcg_stock, cpu);
> > +
> > + /* drain_obj_stock requires stock_lock */
> > + local_lock_irqsave(&memcg_stock.stock_lock, flags);
> > + old = drain_obj_stock(stock);
> > + local_unlock_irqrestore(&memcg_stock.stock_lock, flags);
> > +
> > drain_stock(stock);
> > + obj_cgroup_put(old);
>
> It might be better to call drain_local_stock() directly instead. That
> would prevent a bug of this type to reoccur in the future.
The issue is drain_local_stock() works on the local cpu stock while here
we are working on a remote cpu cpu which is dead (memcg_hotplug_cpu_dead
is in PREPARE section of hotplug teardown which runs after the cpu is
dead).
We can safely call drain_stock() on remote cpu stock here but
drain_obj_stock() is a bit tricky as it can __refill_stock() to local cpu
stock and can call __mod_objcg_mlstate to flush stats. Both of these
requires irq disable for NON-RT kernels and thus I added the local_lock
here.
Anyways I wanted a simple fix for the backports and in parallel I am
working on cleaning up all the stock functions as I plan to add multi
memcg support.
Thanks for taking a look.
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [PATCH] memcg: drain obj stock on cpu hotplug teardown
2025-03-10 23:09 [PATCH] memcg: drain obj stock on cpu hotplug teardown Shakeel Butt
2025-03-11 15:30 ` Johannes Weiner
@ 2025-03-11 16:26 ` Roman Gushchin
1 sibling, 0 replies; 7+ messages in thread
From: Roman Gushchin @ 2025-03-11 16:26 UTC (permalink / raw)
To: Shakeel Butt
Cc: Andrew Morton, Johannes Weiner, Michal Hocko, Muchun Song,
linux-mm, cgroups, linux-kernel, Meta kernel team, stable
On Mon, Mar 10, 2025 at 04:09:34PM -0700, Shakeel Butt wrote:
> Currently on cpu hotplug teardown, only memcg stock is drained but we
> need to drain the obj stock as well otherwise we will miss the stats
> accumulated on the target cpu as well as the nr_bytes cached. The stats
> include MEMCG_KMEM, NR_SLAB_RECLAIMABLE_B & NR_SLAB_UNRECLAIMABLE_B. In
> addition we are leaking reference to struct obj_cgroup object.
>
> Fixes: bf4f059954dc ("mm: memcg/slab: obj_cgroup API")
> Signed-off-by: Shakeel Butt <shakeel.butt@linux.dev>
> Cc: <stable@vger.kernel.org>
Reviewed-by: Roman Gushchin <roman.gushchin@linux.dev>
Thanks!
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [PATCH] memcg: drain obj stock on cpu hotplug teardown
2025-03-11 15:57 ` Shakeel Butt
@ 2025-03-11 16:28 ` Roman Gushchin
2025-03-11 17:43 ` Shakeel Butt
2025-03-11 17:29 ` Johannes Weiner
1 sibling, 1 reply; 7+ messages in thread
From: Roman Gushchin @ 2025-03-11 16:28 UTC (permalink / raw)
To: Shakeel Butt
Cc: Johannes Weiner, Andrew Morton, Michal Hocko, Muchun Song,
linux-mm, cgroups, linux-kernel, Meta kernel team, stable
On Tue, Mar 11, 2025 at 08:57:54AM -0700, Shakeel Butt wrote:
> On Tue, Mar 11, 2025 at 11:30:32AM -0400, Johannes Weiner wrote:
> > On Mon, Mar 10, 2025 at 04:09:34PM -0700, Shakeel Butt wrote:
> > > Currently on cpu hotplug teardown, only memcg stock is drained but we
> > > need to drain the obj stock as well otherwise we will miss the stats
> > > accumulated on the target cpu as well as the nr_bytes cached. The stats
> > > include MEMCG_KMEM, NR_SLAB_RECLAIMABLE_B & NR_SLAB_UNRECLAIMABLE_B. In
> > > addition we are leaking reference to struct obj_cgroup object.
> > >
> > > Fixes: bf4f059954dc ("mm: memcg/slab: obj_cgroup API")
> > > Signed-off-by: Shakeel Butt <shakeel.butt@linux.dev>
> > > Cc: <stable@vger.kernel.org>
> >
> > Wow, that's old. Good catch.
> >
> > > ---
> > > mm/memcontrol.c | 9 +++++++++
> > > 1 file changed, 9 insertions(+)
> > >
> > > diff --git a/mm/memcontrol.c b/mm/memcontrol.c
> > > index 4de6acb9b8ec..59dcaf6a3519 100644
> > > --- a/mm/memcontrol.c
> > > +++ b/mm/memcontrol.c
> > > @@ -1921,9 +1921,18 @@ void drain_all_stock(struct mem_cgroup *root_memcg)
> > > static int memcg_hotplug_cpu_dead(unsigned int cpu)
> > > {
> > > struct memcg_stock_pcp *stock;
> > > + struct obj_cgroup *old;
> > > + unsigned long flags;
> > >
> > > stock = &per_cpu(memcg_stock, cpu);
> > > +
> > > + /* drain_obj_stock requires stock_lock */
> > > + local_lock_irqsave(&memcg_stock.stock_lock, flags);
> > > + old = drain_obj_stock(stock);
> > > + local_unlock_irqrestore(&memcg_stock.stock_lock, flags);
> > > +
> > > drain_stock(stock);
> > > + obj_cgroup_put(old);
> >
> > It might be better to call drain_local_stock() directly instead. That
> > would prevent a bug of this type to reoccur in the future.
>
> The issue is drain_local_stock() works on the local cpu stock while here
> we are working on a remote cpu cpu which is dead (memcg_hotplug_cpu_dead
> is in PREPARE section of hotplug teardown which runs after the cpu is
> dead).
>
> We can safely call drain_stock() on remote cpu stock here but
> drain_obj_stock() is a bit tricky as it can __refill_stock() to local cpu
> stock and can call __mod_objcg_mlstate to flush stats. Both of these
> requires irq disable for NON-RT kernels and thus I added the local_lock
> here.
>
> Anyways I wanted a simple fix for the backports and in parallel I am
> working on cleaning up all the stock functions as I plan to add multi
> memcg support.
Really curious to see patches/more details here, I have some ideas here
as well (nothing materialized yet though).
Thanks!
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [PATCH] memcg: drain obj stock on cpu hotplug teardown
2025-03-11 15:57 ` Shakeel Butt
2025-03-11 16:28 ` Roman Gushchin
@ 2025-03-11 17:29 ` Johannes Weiner
1 sibling, 0 replies; 7+ messages in thread
From: Johannes Weiner @ 2025-03-11 17:29 UTC (permalink / raw)
To: Shakeel Butt
Cc: Andrew Morton, Michal Hocko, Roman Gushchin, Muchun Song,
linux-mm, cgroups, linux-kernel, Meta kernel team, stable
On Tue, Mar 11, 2025 at 08:57:54AM -0700, Shakeel Butt wrote:
> On Tue, Mar 11, 2025 at 11:30:32AM -0400, Johannes Weiner wrote:
> > On Mon, Mar 10, 2025 at 04:09:34PM -0700, Shakeel Butt wrote:
> > > Currently on cpu hotplug teardown, only memcg stock is drained but we
> > > need to drain the obj stock as well otherwise we will miss the stats
> > > accumulated on the target cpu as well as the nr_bytes cached. The stats
> > > include MEMCG_KMEM, NR_SLAB_RECLAIMABLE_B & NR_SLAB_UNRECLAIMABLE_B. In
> > > addition we are leaking reference to struct obj_cgroup object.
> > >
> > > Fixes: bf4f059954dc ("mm: memcg/slab: obj_cgroup API")
> > > Signed-off-by: Shakeel Butt <shakeel.butt@linux.dev>
> > > Cc: <stable@vger.kernel.org>
> >
> > Wow, that's old. Good catch.
> >
> > > ---
> > > mm/memcontrol.c | 9 +++++++++
> > > 1 file changed, 9 insertions(+)
> > >
> > > diff --git a/mm/memcontrol.c b/mm/memcontrol.c
> > > index 4de6acb9b8ec..59dcaf6a3519 100644
> > > --- a/mm/memcontrol.c
> > > +++ b/mm/memcontrol.c
> > > @@ -1921,9 +1921,18 @@ void drain_all_stock(struct mem_cgroup *root_memcg)
> > > static int memcg_hotplug_cpu_dead(unsigned int cpu)
> > > {
> > > struct memcg_stock_pcp *stock;
> > > + struct obj_cgroup *old;
> > > + unsigned long flags;
> > >
> > > stock = &per_cpu(memcg_stock, cpu);
> > > +
> > > + /* drain_obj_stock requires stock_lock */
> > > + local_lock_irqsave(&memcg_stock.stock_lock, flags);
> > > + old = drain_obj_stock(stock);
> > > + local_unlock_irqrestore(&memcg_stock.stock_lock, flags);
> > > +
> > > drain_stock(stock);
> > > + obj_cgroup_put(old);
> >
> > It might be better to call drain_local_stock() directly instead. That
> > would prevent a bug of this type to reoccur in the future.
>
> The issue is drain_local_stock() works on the local cpu stock while here
> we are working on a remote cpu cpu which is dead (memcg_hotplug_cpu_dead
> is in PREPARE section of hotplug teardown which runs after the cpu is
> dead).
>
> We can safely call drain_stock() on remote cpu stock here but
> drain_obj_stock() is a bit tricky as it can __refill_stock() to local cpu
> stock and can call __mod_objcg_mlstate to flush stats. Both of these
> requires irq disable for NON-RT kernels and thus I added the local_lock
> here.
>
> Anyways I wanted a simple fix for the backports and in parallel I am
> working on cleaning up all the stock functions as I plan to add multi
> memcg support.
True, it can be refactored separately.
Acked-by: Johannes Weiner <hannes@cmpxchg.org>
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [PATCH] memcg: drain obj stock on cpu hotplug teardown
2025-03-11 16:28 ` Roman Gushchin
@ 2025-03-11 17:43 ` Shakeel Butt
0 siblings, 0 replies; 7+ messages in thread
From: Shakeel Butt @ 2025-03-11 17:43 UTC (permalink / raw)
To: Roman Gushchin
Cc: Johannes Weiner, Andrew Morton, Michal Hocko, Muchun Song,
linux-mm, cgroups, linux-kernel, Meta kernel team, stable
On Tue, Mar 11, 2025 at 04:28:15PM +0000, Roman Gushchin wrote:
[...]
> >
> > Anyways I wanted a simple fix for the backports and in parallel I am
> > working on cleaning up all the stock functions as I plan to add multi
> > memcg support.
>
> Really curious to see patches/more details here, I have some ideas here
> as well (nothing materialized yet though).
>
My eventual goal is to add support for multi memcg stock to solve the
charging cost of incoming networking traffic in multi-tenant
environment. In the cleanups my plan is to reduce the number of irq
disable operations in the most common paths and explore if for task
context we can do without any irq disabling operation (possibly by
separate stocks for in_task and !in_task contexts).
^ permalink raw reply [flat|nested] 7+ messages in thread
end of thread, other threads:[~2025-03-11 17:43 UTC | newest]
Thread overview: 7+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2025-03-10 23:09 [PATCH] memcg: drain obj stock on cpu hotplug teardown Shakeel Butt
2025-03-11 15:30 ` Johannes Weiner
2025-03-11 15:57 ` Shakeel Butt
2025-03-11 16:28 ` Roman Gushchin
2025-03-11 17:43 ` Shakeel Butt
2025-03-11 17:29 ` Johannes Weiner
2025-03-11 16:26 ` Roman Gushchin
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox