From: Wen Congyang <wency@cn.fujitsu.com>
To: qiuxishi <qiuxishi@gmail.com>
Cc: akpm@linux-foundation.org, liuj97@gmail.com,
paul.gortmaker@windriver.com, linux-mm@kvack.org,
linux-kernel@vger.kernel.org, bessel.wang@huawei.com,
wujianguo@huawei.com, qiuxishi@huawei.com, jiang.liu@huawei.com,
guohanjun@huawei.com, chenkeping@huawei.com, yinghai@kernel.org
Subject: Re: [PATCH] memory-hotplug: add build zonelists when offline pages
Date: Wed, 22 Aug 2012 14:15:34 +0800 [thread overview]
Message-ID: <50347906.4030101@cn.fujitsu.com> (raw)
In-Reply-To: <5033843E.8000902@gmail.com>
At 08/21/2012 08:51 PM, qiuxishi Wrote:
> From: Xishi Qiu <qiuxishi@huawei.com>
>
> online_pages() does build_all_zonelists() and zone_pcp_update(),
> I think offline_pages() should do it too. The node has no memory
> to allocate, so remove this node's zones form other nodes' zonelists.
>
>
> Signed-off-by: Xishi Qiu <qiuxishi@huawei.com>
> ---
> mm/memory_hotplug.c | 6 +++++-
> 1 files changed, 5 insertions(+), 1 deletions(-)
>
> diff --git a/mm/memory_hotplug.c b/mm/memory_hotplug.c
> index bc7e7a2..5172bd4 100644
> --- a/mm/memory_hotplug.c
> +++ b/mm/memory_hotplug.c
> @@ -979,7 +979,11 @@ repeat:
> if (!node_present_pages(node)) {
> node_clear_state(node, N_HIGH_MEMORY);
> kswapd_stop(node);
> - }
> + mutex_lock(&zonelists_mutex);
> + build_all_zonelists(NODE_DATA(node), NULL);
The node is still onlined now, so there is no need to pass
this node's pgdat to build_all_zonelists().
I think we should build all zonelists when the zone has no
pages.
> + mutex_unlock(&zonelists_mutex);
> + } else
> + zone_pcp_update(zone);
There is more than one zone in a node. So the zone can have
no pages when the node has some pages.
And we have called drain_all_pages(), I think there is no need
to call zone_pcp_update() here.
Thanks
Wen Congyang
>
> vm_total_pages = nr_free_pagecache_pages();
> writeback_set_ratelimit();
--
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>
WARNING: multiple messages have this Message-ID (diff)
From: Wen Congyang <wency@cn.fujitsu.com>
To: qiuxishi <qiuxishi@gmail.com>
Cc: akpm@linux-foundation.org, liuj97@gmail.com,
paul.gortmaker@windriver.com, linux-mm@kvack.org,
linux-kernel@vger.kernel.org, bessel.wang@huawei.com,
wujianguo@huawei.com, qiuxishi@huawei.com, jiang.liu@huawei.com,
guohanjun@huawei.com, chenkeping@huawei.com, yinghai@kernel.org
Subject: Re: [PATCH] memory-hotplug: add build zonelists when offline pages
Date: Wed, 22 Aug 2012 14:15:34 +0800 [thread overview]
Message-ID: <50347906.4030101@cn.fujitsu.com> (raw)
In-Reply-To: <5033843E.8000902@gmail.com>
At 08/21/2012 08:51 PM, qiuxishi Wrote:
> From: Xishi Qiu <qiuxishi@huawei.com>
>
> online_pages() does build_all_zonelists() and zone_pcp_update(),
> I think offline_pages() should do it too. The node has no memory
> to allocate, so remove this node's zones form other nodes' zonelists.
>
>
> Signed-off-by: Xishi Qiu <qiuxishi@huawei.com>
> ---
> mm/memory_hotplug.c | 6 +++++-
> 1 files changed, 5 insertions(+), 1 deletions(-)
>
> diff --git a/mm/memory_hotplug.c b/mm/memory_hotplug.c
> index bc7e7a2..5172bd4 100644
> --- a/mm/memory_hotplug.c
> +++ b/mm/memory_hotplug.c
> @@ -979,7 +979,11 @@ repeat:
> if (!node_present_pages(node)) {
> node_clear_state(node, N_HIGH_MEMORY);
> kswapd_stop(node);
> - }
> + mutex_lock(&zonelists_mutex);
> + build_all_zonelists(NODE_DATA(node), NULL);
The node is still onlined now, so there is no need to pass
this node's pgdat to build_all_zonelists().
I think we should build all zonelists when the zone has no
pages.
> + mutex_unlock(&zonelists_mutex);
> + } else
> + zone_pcp_update(zone);
There is more than one zone in a node. So the zone can have
no pages when the node has some pages.
And we have called drain_all_pages(), I think there is no need
to call zone_pcp_update() here.
Thanks
Wen Congyang
>
> vm_total_pages = nr_free_pagecache_pages();
> writeback_set_ratelimit();
next prev parent reply other threads:[~2012-08-22 6:10 UTC|newest]
Thread overview: 8+ messages / expand[flat|nested] mbox.gz Atom feed top
2012-08-21 12:51 [PATCH] memory-hotplug: add build zonelists when offline pages qiuxishi
2012-08-21 12:51 ` qiuxishi
2012-08-22 6:15 ` Wen Congyang [this message]
2012-08-22 6:15 ` Wen Congyang
2012-08-22 7:59 ` qiuxishi
2012-08-22 7:59 ` qiuxishi
2012-08-22 9:01 ` Wen Congyang
2012-08-22 9:01 ` Wen Congyang
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=50347906.4030101@cn.fujitsu.com \
--to=wency@cn.fujitsu.com \
--cc=akpm@linux-foundation.org \
--cc=bessel.wang@huawei.com \
--cc=chenkeping@huawei.com \
--cc=guohanjun@huawei.com \
--cc=jiang.liu@huawei.com \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-mm@kvack.org \
--cc=liuj97@gmail.com \
--cc=paul.gortmaker@windriver.com \
--cc=qiuxishi@gmail.com \
--cc=qiuxishi@huawei.com \
--cc=wujianguo@huawei.com \
--cc=yinghai@kernel.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 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.