From: Andrew Morton <akpm@linux-foundation.org>
To: Yasunori Goto <y-goto@jp.fujitsu.com>
Cc: Andy Whitcroft <apw@shadowen.org>,
Paul Mundt <lethal@linux-sh.org>,
linux-kernel@vger.kernel.org, linux-mm@kvack.org
Subject: Re: [PATCH -mm] mm: Fix memory hotplug + sparsemem build.
Date: Thu, 13 Sep 2007 18:44:56 -0700 [thread overview]
Message-ID: <20070913184456.16ff248e.akpm@linux-foundation.org> (raw)
In-Reply-To: <20070911182546.F139.Y-GOTO@jp.fujitsu.com>
On Tue, 11 Sep 2007 18:37:12 +0900 Yasunori Goto <y-goto@jp.fujitsu.com> wrote:
>
> > > + if (onlined_pages){
> >
> > Nit, needs a space there before the '{'.
>
> Ah, Ok. I attached fixed patch in this mail.
>
> > The problem as I see it is that when we boot the system we start a
> > kswapd on all nodes with memory. If the hot-add adds memory to a
> > pre-existing node with no memory we will not start one and we end up
> > with a node with memory and no kswapd. Bad.
> >
> > As kswapd_run is a no-op when a kswapd already exists this seems a safe
> > way to fix that. Paul's ->zone conversion is obviously correct also.
> >
> > Acked-by: Andy Whitcroft <apw@shadowen.org>
>
> Thanks for your explanation.
> You mentioned all of my intention correctly. :-)
>
>
> ----
>
> Fix kswapd doesn't run when memory is added on memory-less-node.
> Fix compile error of zone->node when CONFIG_NUMA is off.
>
> Signed-off-by: Yasunori Goto <y-goto@jp.fujitsu.com>
> Signed-off-by: Paul Mundt <lethal@linux-sh.org>
> Acked-by: Andy Whitcroft <apw@shadowen.org>
>
>
> ---
> mm/memory_hotplug.c | 9 ++++-----
> 1 file changed, 4 insertions(+), 5 deletions(-)
>
> Index: current/mm/memory_hotplug.c
> ===================================================================
> --- current.orig/mm/memory_hotplug.c 2007-09-07 18:08:07.000000000 +0900
> +++ current/mm/memory_hotplug.c 2007-09-11 17:29:19.000000000 +0900
> @@ -211,10 +211,12 @@ int online_pages(unsigned long pfn, unsi
> online_pages_range);
> zone->present_pages += onlined_pages;
> zone->zone_pgdat->node_present_pages += onlined_pages;
> - if (onlined_pages)
> - node_set_state(zone->node, N_HIGH_MEMORY);
>
> setup_per_zone_pages_min();
> + if (onlined_pages) {
> + kswapd_run(zone_to_nid(zone));
> + node_set_state(zone_to_nid(zone), N_HIGH_MEMORY);
> + }
>
> if (need_zonelists_rebuild)
> build_all_zonelists();
> @@ -269,9 +271,6 @@ int add_memory(int nid, u64 start, u64 s
> if (!pgdat)
> return -ENOMEM;
> new_pgdat = 1;
> - ret = kswapd_run(nid);
> - if (ret)
> - goto error;
> }
>
> /* call arch's memory hotadd */
>
OK, we're getting into a mess here. This patch fixes
update-n_high_memory-node-state-for-memory-hotadd.patch, but which patch
does update-n_high_memory-node-state-for-memory-hotadd.patch fix?
At present I just whacked
update-n_high_memory-node-state-for-memory-hotadd.patch at the end of
everything, but that was lazy of me and it ends up making a mess.
WARNING: multiple messages have this Message-ID (diff)
From: Andrew Morton <akpm@linux-foundation.org>
To: Yasunori Goto <y-goto@jp.fujitsu.com>
Cc: Andy Whitcroft <apw@shadowen.org>,
Paul Mundt <lethal@linux-sh.org>,
linux-kernel@vger.kernel.org, linux-mm@kvack.org
Subject: Re: [PATCH -mm] mm: Fix memory hotplug + sparsemem build.
Date: Thu, 13 Sep 2007 18:44:56 -0700 [thread overview]
Message-ID: <20070913184456.16ff248e.akpm@linux-foundation.org> (raw)
In-Reply-To: <20070911182546.F139.Y-GOTO@jp.fujitsu.com>
On Tue, 11 Sep 2007 18:37:12 +0900 Yasunori Goto <y-goto@jp.fujitsu.com> wrote:
>
> > > + if (onlined_pages){
> >
> > Nit, needs a space there before the '{'.
>
> Ah, Ok. I attached fixed patch in this mail.
>
> > The problem as I see it is that when we boot the system we start a
> > kswapd on all nodes with memory. If the hot-add adds memory to a
> > pre-existing node with no memory we will not start one and we end up
> > with a node with memory and no kswapd. Bad.
> >
> > As kswapd_run is a no-op when a kswapd already exists this seems a safe
> > way to fix that. Paul's ->zone conversion is obviously correct also.
> >
> > Acked-by: Andy Whitcroft <apw@shadowen.org>
>
> Thanks for your explanation.
> You mentioned all of my intention correctly. :-)
>
>
> ----
>
> Fix kswapd doesn't run when memory is added on memory-less-node.
> Fix compile error of zone->node when CONFIG_NUMA is off.
>
> Signed-off-by: Yasunori Goto <y-goto@jp.fujitsu.com>
> Signed-off-by: Paul Mundt <lethal@linux-sh.org>
> Acked-by: Andy Whitcroft <apw@shadowen.org>
>
>
> ---
> mm/memory_hotplug.c | 9 ++++-----
> 1 file changed, 4 insertions(+), 5 deletions(-)
>
> Index: current/mm/memory_hotplug.c
> ===================================================================
> --- current.orig/mm/memory_hotplug.c 2007-09-07 18:08:07.000000000 +0900
> +++ current/mm/memory_hotplug.c 2007-09-11 17:29:19.000000000 +0900
> @@ -211,10 +211,12 @@ int online_pages(unsigned long pfn, unsi
> online_pages_range);
> zone->present_pages += onlined_pages;
> zone->zone_pgdat->node_present_pages += onlined_pages;
> - if (onlined_pages)
> - node_set_state(zone->node, N_HIGH_MEMORY);
>
> setup_per_zone_pages_min();
> + if (onlined_pages) {
> + kswapd_run(zone_to_nid(zone));
> + node_set_state(zone_to_nid(zone), N_HIGH_MEMORY);
> + }
>
> if (need_zonelists_rebuild)
> build_all_zonelists();
> @@ -269,9 +271,6 @@ int add_memory(int nid, u64 start, u64 s
> if (!pgdat)
> return -ENOMEM;
> new_pgdat = 1;
> - ret = kswapd_run(nid);
> - if (ret)
> - goto error;
> }
>
> /* call arch's memory hotadd */
>
OK, we're getting into a mess here. This patch fixes
update-n_high_memory-node-state-for-memory-hotadd.patch, but which patch
does update-n_high_memory-node-state-for-memory-hotadd.patch fix?
At present I just whacked
update-n_high_memory-node-state-for-memory-hotadd.patch at the end of
everything, but that was lazy of me and it ends up making a mess.
--
To unsubscribe, send a message with 'unsubscribe linux-mm' in
the body to majordomo@kvack.org. For more info on Linux MM,
see: http://www.linux-mm.org/ .
Don't email: <a href=mailto:"dont@kvack.org"> email@kvack.org </a>
next prev parent reply other threads:[~2007-09-14 1:45 UTC|newest]
Thread overview: 22+ messages / expand[flat|nested] mbox.gz Atom feed top
2007-09-11 7:25 [PATCH -mm] mm: Fix memory hotplug + sparsemem build Paul Mundt
2007-09-11 7:25 ` Paul Mundt
2007-09-11 8:18 ` Yasunori Goto
2007-09-11 8:18 ` Yasunori Goto
2007-09-11 8:25 ` Paul Mundt
2007-09-11 8:25 ` Paul Mundt
2007-09-11 9:15 ` Andy Whitcroft
2007-09-11 9:15 ` Andy Whitcroft
2007-09-11 9:37 ` Yasunori Goto
2007-09-11 9:37 ` Yasunori Goto
2007-09-14 1:44 ` Andrew Morton [this message]
2007-09-14 1:44 ` Andrew Morton
2007-09-14 2:02 ` Yasunori Goto
2007-09-14 2:02 ` Yasunori Goto
2007-09-14 2:41 ` Andrew Morton
2007-09-14 2:41 ` Andrew Morton
2007-09-14 5:14 ` Yasunori Goto
2007-09-14 5:14 ` Yasunori Goto
2007-09-14 14:09 ` Lee Schermerhorn
2007-09-14 14:09 ` Lee Schermerhorn
2007-09-14 20:51 ` Andrew Morton
2007-09-14 20:51 ` Andrew Morton
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=20070913184456.16ff248e.akpm@linux-foundation.org \
--to=akpm@linux-foundation.org \
--cc=apw@shadowen.org \
--cc=lethal@linux-sh.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-mm@kvack.org \
--cc=y-goto@jp.fujitsu.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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.