[<prev] [next>] [<thread-prev] [day] [month] [year] [list]
Message-ID: <20240216112636.GA4266@system.software.com>
Date: Fri, 16 Feb 2024 20:26:36 +0900
From: Byungchul Park <byungchul@...com>
To: Oscar Salvador <osalvador@...e.de>
Cc: mingo@...hat.com, peterz@...radead.org, juri.lelli@...hat.com,
vincent.guittot@...aro.org, dietmar.eggemann@....com,
rostedt@...dmis.org, bsegall@...gle.com, mgorman@...e.de,
bristot@...hat.com, vschneid@...hat.com,
linux-kernel@...r.kernel.org, linux-mm@...ck.org,
kernel_team@...ynix.com, akpm@...ux-foundation.org
Subject: Re: [PATCH] sched/numa, mm: do not promote folios to nodes not set
N_MEMORY
On Fri, Feb 16, 2024 at 06:23:05PM +0900, Byungchul Park wrote:
> On Fri, Feb 16, 2024 at 06:11:40PM +0900, Byungchul Park wrote:
> > On Fri, Feb 16, 2024 at 08:52:30AM +0100, Oscar Salvador wrote:
> > > On Fri, Feb 16, 2024 at 04:07:54PM +0900, Byungchul Park wrote:
> > > > For normal numa nodes, node_data[] is initialized at alloc_node_data(),
> > > > but it's not for memoryless node. However, the node *gets onlined* at
> > > > init_cpu_to_node().
> > > >
> > > > Let's look at back free_area_init(). free_area_init_node() will be called
> > > > with node_data[] not set yet, because it's already *onlined*. So
> > > > ->zone_pgdat cannot be initialized properly in the path you mentioned.
> > >
> > > I am might be missing something., so bear with me.
> > >
> > > free_area_init() gets called before init_cpu_to_node() does.
> > > free_area_init_node() gets called on every possible node.
> > >
> > > free_area_init_node then() does
> > >
> > > pg_data_t *pgdat = NODE_DATA(nid);,
> > >
> > > and then we call free_area_init_core().
> > >
> > > free_area_init_core() does
> > >
> > > free_area_init_core() does
> > > zone_init_internals()
> > >
> > > which ends up doing zone->zone_pgdat = NODE_DATA(nid);
> > >
> > > If node_data[] was not set at all, we would already blow up when doing
> > > the first
> > >
> > > for_each_node()
> > > pgdat = NODE_DATA(nid);
> > > free_area_init_node(nid);
> > >
> > > back in free_area_init().
> >
> > It seems that I got it wrong about the reason. Let me check it again and
> > share the reason.
I analyzed it wrong. Even though the issue was gone with the patch but
it's not the fix. Sorry for making you confused. I submitted the fix with
another patch:
https://lore.kernel.org/lkml/20240216111502.79759-1-byungchul@sk.com/
Byungchul
Powered by blists - more mailing lists