From: Yosry Ahmed <yosryahmed@google.com>
To: Brendan Jackman <jackmanb@google.com>,
Roman Gushchin <roman.gushchin@linux.dev>
Cc: linux-mm@kvack.org, linux-kernel@vger.kernel.org,
Johannes Weiner <hannes@cmpxchg.org>,
Michal Hocko <mhocko@kernel.org>,
Shakeel Butt <shakeelb@google.com>,
Muchun Song <muchun.song@linux.dev>,
Andrew Morton <akpm@linux-foundation.org>
Subject: Re: [PATCH v2] mm/page_alloc: Dedupe some memcg uncharging logic
Date: Wed, 8 Nov 2023 12:19:23 -0800 [thread overview]
Message-ID: <CAJD7tkbZ3=yRj5XDR=zoQfxEYdy70hw8bBogyRFRhKhn6=LPBg@mail.gmail.com> (raw)
In-Reply-To: <20231108164920.3401565-1-jackmanb@google.com>
On Wed, Nov 8, 2023 at 8:49 AM Brendan Jackman <jackmanb@google.com> wrote:
>
> The duplication makes it seem like some work is required before
> uncharging in the !PageHWPoison case. But it isn't, so we can simplify
> the code a little.
>
> Note the PageMemcgKmem check is redundant, but I've left it in as it
> avoids an unnecessary function call.
>
> Signed-off-by: Brendan Jackman <jackmanb@google.com>
> ---
> mm/page_alloc.c | 12 ++++--------
> 1 file changed, 4 insertions(+), 8 deletions(-)
>
> diff --git a/mm/page_alloc.c b/mm/page_alloc.c
> index 733732e7e0ba..dd5e8a759d27 100644
> --- a/mm/page_alloc.c
> +++ b/mm/page_alloc.c
> @@ -1086,13 +1086,11 @@ static __always_inline bool free_pages_prepare(struct page *page,
> trace_mm_page_free(page, order);
> kmsan_free_page(page, order);
>
> + if (memcg_kmem_online() && PageMemcgKmem(page))
> + __memcg_kmem_uncharge_page(page, order);
> +
> if (unlikely(PageHWPoison(page)) && !order) {
> - /*
> - * Do not let hwpoison pages hit pcplists/buddy
> - * Untie memcg state and reset page's owner
> - */
> - if (memcg_kmem_online() && PageMemcgKmem(page))
> - __memcg_kmem_uncharge_page(page, order);
> + /* Do not let hwpoison pages hit pcplists/buddy */
> reset_page_owner(page, order);
> page_table_check_free(page, order);
> return false;
> @@ -1123,8 +1121,6 @@ static __always_inline bool free_pages_prepare(struct page *page,
> }
> if (PageMappingFlags(page))
> page->mapping = NULL;
> - if (memcg_kmem_online() && PageMemcgKmem(page))
> - __memcg_kmem_uncharge_page(page, order);
Nothing happening in the function before this point seems to affect
the memcg uncharging. It only acts on the head page, and most of the
code up until here is acting on tail pages.
LGTM, but I'd be more comfortable if Roman took a look as well.
Reviewed-by: Yosry Ahmed <yosryahmed@google.com>
> if (is_check_pages_enabled()) {
> if (free_page_is_bad(page))
> bad++;
> --
> 2.42.0.869.gea05f2083d-goog
>
>
next prev parent reply other threads:[~2023-11-08 20:20 UTC|newest]
Thread overview: 4+ messages / expand[flat|nested] mbox.gz Atom feed top
2023-11-08 16:49 Brendan Jackman
2023-11-08 20:19 ` Yosry Ahmed [this message]
2023-11-08 23:51 ` Shakeel Butt
2023-11-09 0:07 ` Yosry Ahmed
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='CAJD7tkbZ3=yRj5XDR=zoQfxEYdy70hw8bBogyRFRhKhn6=LPBg@mail.gmail.com' \
--to=yosryahmed@google.com \
--cc=akpm@linux-foundation.org \
--cc=hannes@cmpxchg.org \
--cc=jackmanb@google.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=shakeelb@google.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