]> git.kernelconcepts.de Git - karo-tx-linux.git/commitdiff
memory-hotplug: build zonelists when offlining pages
authorXishi Qiu <qiuxishi@huawei.com>
Thu, 13 Sep 2012 00:58:57 +0000 (10:58 +1000)
committerStephen Rothwell <sfr@canb.auug.org.au>
Thu, 13 Sep 2012 07:28:00 +0000 (17:28 +1000)
online_pages() does build_all_zonelists() and zone_pcp_update(), I think
offline_pages() should do it too.

When the zone has no memory to allocate, remove it from other nodes'
zonelists.  zone_batchsize() depends on zone's present pages, if zone's
present pages are changed, zone's pcp should be updated.

Signed-off-by: Xishi Qiu <qiuxishi@huawei.com>
Cc: Yasuaki Ishimatsu <isimatu.yasuaki@jp.fujitsu.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
mm/memory_hotplug.c

index 3ad25f9d1fc134dc09e9672fad40f508e12e9502..4491a6b0e50036a1cafba54cb8ab8c980fb86bcb 100644 (file)
@@ -966,8 +966,13 @@ repeat:
 
        init_per_zone_wmark_min();
 
-       if (!populated_zone(zone))
+       if (!populated_zone(zone)) {
                zone_pcp_reset(zone);
+               mutex_lock(&zonelists_mutex);
+               build_all_zonelists(NULL, NULL);
+               mutex_unlock(&zonelists_mutex);
+       } else
+               zone_pcp_update(zone);
 
        if (!node_present_pages(node)) {
                node_clear_state(node, N_HIGH_MEMORY);