From: Yueyang Pan <pyyjason@gmail.com>
To: Joshua Hahn <joshua.hahnjy@gmail.com>
Cc: Suren Baghdasaryan <surenb@google.com>,
Kent Overstreet <kent.overstreet@linux.dev>,
Usama Arif <usamaarif642@gmail.com>,
Michal Hocko <mhocko@suse.com>,
David Rientjes <rientjes@google.com>,
Shakeel Butt <shakeel.butt@linux.dev>,
Andrew Morton <akpm@linux-foundation.org>,
linux-mm@kvack.org, linux-kernel@vger.kernel.org,
kernel-team@meta.com
Subject: Re: [RFC 1/1] Add memory allocation info for cgroup oom
Date: Mon, 18 Aug 2025 07:24:15 -0700 [thread overview]
Message-ID: <aKM3j3geY7JiPGQ8@devbig569.cln6.facebook.com> (raw)
In-Reply-To: <20250814201114.1921580-1-joshua.hahnjy@gmail.com>
On Thu, Aug 14, 2025 at 01:11:08PM -0700, Joshua Hahn wrote:
> On Thu, 14 Aug 2025 10:11:57 -0700 Yueyang Pan <pyyjason@gmail.com> wrote:
>
> > Enable show_mem for the cgroup oom case. We will have memory allocation
> > information in such case for the machine.
>
> Hi Pan,
>
> Thank you for your patch! This makes sense to me. As for your concerns from the
> cover letter on whether this is too much information: personally I don't think
> so, but perhaps other developers will have different opinions?
>
> I just have a few comments / nits.
Thanks for your comment, Joshua.
>
> > Signed-off-by: Yueyang Pan <pyyjason@gmail.com>
> > ---
> > mm/oom_kill.c | 4 +++-
> > 1 file changed, 3 insertions(+), 1 deletion(-)
> >
> > diff --git a/mm/oom_kill.c b/mm/oom_kill.c
> > index 17650f0b516e..3ca224028396 100644
> > --- a/mm/oom_kill.c
> > +++ b/mm/oom_kill.c
> > @@ -465,8 +465,10 @@ static void dump_header(struct oom_control *oc)
> > pr_warn("COMPACTION is disabled!!!\n");
> >
> > dump_stack();
> > - if (is_memcg_oom(oc))
> > + if (is_memcg_oom(oc)) {
> > mem_cgroup_print_oom_meminfo(oc->memcg);
> > + show_mem();
>
> Below, there is a direct call to __show_mem, which limits node and zone
> filtering. I am wondering whether it would make sense to also call __show_mem
> with the same arguments? show_mem() is just a wrapper around __show_mem with
> default parameters (i.e. not filtering out nodes, not filtering out
> zones).
The reason why I call show_mem here directly is because cgroup is not bound to
a specific zone or node (correctly me if I am wrong). Thus I simply invoke
show_mem to show system-wide memory info.
>
> If you think this makes sense, we can even take it out of the if-else statement
> and call it unconditionally. But this is just my opinion, please feel free to
> keep the unfiltered call if you believe that fits better in here.
>
> > + }
>
> NIT: Should this closing brace be on the same line as the following else
> statement, as per the kernel style guide [1]
Sorry for this. I will run checkpatch for my formal patch definitely
>
> > else {
> > __show_mem(SHOW_MEM_FILTER_NODES, oc->nodemask, gfp_zone(oc->gfp_mask));
> > if (should_dump_unreclaim_slab())
> > --
> > 2.47.3
>
> Thanks again Pan, I hope you have a great day!
> Joshua
>
> [1] https://docs.kernel.org/process/coding-style.html
>
> Sent using hkml (https://github.com/sjp38/hackermail)
Sorry that I forgot to cc some maintainers so I added them in this reply.
Pan
next prev parent reply other threads:[~2025-08-18 14:24 UTC|newest]
Thread overview: 26+ messages / expand[flat|nested] mbox.gz Atom feed top
2025-08-14 17:11 [RFC 0/1] Try to add memory allocation info for cgroup oom kill Yueyang Pan
2025-08-14 17:11 ` [RFC 1/1] Add memory allocation info for cgroup oom Yueyang Pan
2025-08-14 20:11 ` Joshua Hahn
2025-08-18 14:24 ` Yueyang Pan [this message]
2025-08-21 1:25 ` Suren Baghdasaryan
2025-08-21 19:09 ` Yueyang Pan
2025-08-21 18:35 ` [RFC 0/1] Try to add memory allocation info for cgroup oom kill Shakeel Butt
2025-08-21 19:18 ` Yueyang Pan
2025-08-21 19:53 ` Shakeel Butt
2025-08-21 20:00 ` Suren Baghdasaryan
2025-08-21 21:26 ` Shakeel Butt
2025-08-26 13:52 ` Yueyang Pan
2025-08-26 14:06 ` Yueyang Pan
2025-08-27 2:38 ` Suren Baghdasaryan
2025-08-29 6:35 ` Michal Hocko
2025-09-08 17:34 ` Kent Overstreet
2025-09-08 17:47 ` Suren Baghdasaryan
2025-09-08 17:49 ` Kent Overstreet
2025-09-08 17:51 ` Suren Baghdasaryan
2025-09-08 19:07 ` Shakeel Butt
2025-09-08 19:55 ` Suren Baghdasaryan
2025-09-09 6:17 ` Michal Hocko
2025-08-27 2:32 ` Suren Baghdasaryan
2025-08-27 4:47 ` Usama Arif
2025-08-27 21:15 ` Shakeel Butt
2025-09-07 5:16 ` Suren Baghdasaryan
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=aKM3j3geY7JiPGQ8@devbig569.cln6.facebook.com \
--to=pyyjason@gmail.com \
--cc=akpm@linux-foundation.org \
--cc=joshua.hahnjy@gmail.com \
--cc=kent.overstreet@linux.dev \
--cc=kernel-team@meta.com \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-mm@kvack.org \
--cc=mhocko@suse.com \
--cc=rientjes@google.com \
--cc=shakeel.butt@linux.dev \
--cc=surenb@google.com \
--cc=usamaarif642@gmail.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