From: Michal Hocko <mhocko@suse.com>
To: 김재원 <jaewon31.kim@samsung.com>
Cc: "akpm@linux-foundation.org" <akpm@linux-foundation.org>,
"hannes@cmpxchg.org" <hannes@cmpxchg.org>,
"linux-mm@kvack.org" <linux-mm@kvack.org>,
"linux-kernel@vger.kernel.org" <linux-kernel@vger.kernel.org>,
"jaewon31.kim@gmail.com" <jaewon31.kim@gmail.com>
Subject: Re: (2) [PATCH] page_alloc: avoid the negative free for meminfo available
Date: Tue, 3 Jan 2023 09:32:06 +0100 [thread overview]
Message-ID: <Y7PoBkLyCaH1KHbB@dhcp22.suse.cz> (raw)
In-Reply-To: <20230103082008epcms1p6f75b54cbfeba0a1ab9a8044dc650134b@epcms1p6>
On Tue 03-01-23 17:20:08, 김재원 wrote:
> >On Tue 03-01-23 16:28:07, Jaewon Kim wrote:
> >> The totalreserve_pages could be higher than the free because of
> >> watermark high or watermark boost. Handle this situation and fix it to 0
> >> free size.
> >
> >What is the actual problem you are trying to address by this change?
>
> Hello
>
> As described on the original commit,
> 34e431b0ae39 /proc/meminfo: provide estimated available memory
> mm is tring to provide the avaiable memory to user space.
>
> But if free is negative, the available memory shown to userspace
> would be shown smaller thatn the actual available size. The userspace
> may do unwanted memory shrinking actions like process kills.
Do you have any specific example? Have you seen this happening in
practice or is this based on the code inspection?
Also does this patch actually fix anything? Say the system is really
struggling and we are under min watermark. Shouldn't that lead to
Available to be reported as 0 without even looking at other counters?
> I think the logic sholud account the positive size only.
>
> BR
>
> >
> >> Signed-off-by: Jaewon Kim <jaewon31.kim@samsung.com>
> >> ---
> >> mm/page_alloc.c | 2 ++
> >> 1 file changed, 2 insertions(+)
> >>
> >> diff --git a/mm/page_alloc.c b/mm/page_alloc.c
> >> index 218b28ee49ed..e510ae83d5f3 100644
> >> --- a/mm/page_alloc.c
> >> +++ b/mm/page_alloc.c
> >> @@ -5948,6 +5948,8 @@ long si_mem_available(void)
> >> * without causing swapping or OOM.
> >> */
> >> available = global_zone_page_state(NR_FREE_PAGES) - totalreserve_pages;
> >> + if (available < 0)
> >> + available = 0;
> >>
> >> /*
> >> * Not all the page cache can be freed, otherwise the system will
> >> --
> >> 2.17.1
> >
> >--
> >Michal Hocko
> >SUSE Labs
>
>
>
>
> --------- Original Message ---------
> Sender : Michal Hocko <mhocko@suse.com>
> Date : 2023-01-03 17:03 (GMT+9)
> Title : Re: [PATCH] page_alloc: avoid the negative free for meminfo available
>
> On Tue 03-01-23 16:28:07, Jaewon Kim wrote:
> > The totalreserve_pages could be higher than the free because of
> > watermark high or watermark boost. Handle this situation and fix it to 0
> > free size.
>
> What is the actual problem you are trying to address by this change?
>
> > Signed-off-by: Jaewon Kim <jaewon31.kim@samsung.com>
> > ---
> > mm/page_alloc.c | 2 ++
> > 1 file changed, 2 insertions(+)
> >
> > diff --git a/mm/page_alloc.c b/mm/page_alloc.c
> > index 218b28ee49ed..e510ae83d5f3 100644
> > --- a/mm/page_alloc.c
> > +++ b/mm/page_alloc.c
> > @@ -5948,6 +5948,8 @@ long si_mem_available(void)
> > * without causing swapping or OOM.
> > */
> > available = global_zone_page_state(NR_FREE_PAGES) - totalreserve_pages;
> > + if (available < 0)
> > + available = 0;
> >
> > /*
> > * Not all the page cache can be freed, otherwise the system will
> > --
> > 2.17.1
>
> --
> Michal Hocko
> SUSE Labs
>
--
Michal Hocko
SUSE Labs
next prev parent reply other threads:[~2023-01-03 8:32 UTC|newest]
Thread overview: 9+ messages / expand[flat|nested] mbox.gz Atom feed top
[not found] <CGME20230103072834epcas1p3441ef50a6cc26ac48d184f1244b76a0e@epcas1p3.samsung.com>
2023-01-03 7:28 ` Jaewon Kim
2023-01-03 7:35 ` Lorenzo Stoakes
[not found] ` <CGME20230103072834epcas1p3441ef50a6cc26ac48d184f1244b76a0e@epcms1p3>
2023-01-03 7:50 ` Jaewon Kim
2023-01-03 8:03 ` Michal Hocko
[not found] ` <CGME20230103072834epcas1p3441ef50a6cc26ac48d184f1244b76a0e@epcms1p6>
2023-01-03 8:20 ` 김재원
2023-01-03 8:32 ` Michal Hocko [this message]
[not found] ` <CGME20230103072834epcas1p3441ef50a6cc26ac48d184f1244b76a0e@epcms1p7>
2023-01-03 9:22 ` (2) " 김재원
2023-01-03 10:20 ` Michal Hocko
[not found] ` <CGME20230103072834epcas1p3441ef50a6cc26ac48d184f1244b76a0e@epcms1p5>
2023-01-03 10:39 ` 김재원
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=Y7PoBkLyCaH1KHbB@dhcp22.suse.cz \
--to=mhocko@suse.com \
--cc=akpm@linux-foundation.org \
--cc=hannes@cmpxchg.org \
--cc=jaewon31.kim@gmail.com \
--cc=jaewon31.kim@samsung.com \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-mm@kvack.org \
/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