diff options
author | Wen Congyang <wency@cn.fujitsu.com> | 2012-12-11 19:00:52 -0500 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2012-12-11 20:22:23 -0500 |
commit | 97d0da2204ed9e34d9d42c2024c5bea5543f13c6 (patch) | |
tree | eb32b11325ff96031f6f7a8fa3ae2b9c5f8417d1 /mm/page_alloc.c | |
parent | 7c72eb327282ee7fcadc5ef227c075cf72467ba7 (diff) |
memory-hotplug: fix NR_FREE_PAGES mismatch
NR_FREE_PAGES will be wrong after offlining pages. We add/dec
NR_FREE_PAGES like this now:
1. move all pages in buddy system to MIGRATE_ISOLATE, and dec NR_FREE_PAGES
2. don't add NR_FREE_PAGES when it is freed and the migratetype is
MIGRATE_ISOLATE
3. dec NR_FREE_PAGES when offlining isolated pages.
4. add NR_FREE_PAGES when undoing isolate pages.
When we come to step 3, all pages are in MIGRATE_ISOLATE list, and
NR_FREE_PAGES are right. When we come to step4, all pages are not in
buddy system, so we don't change NR_FREE_PAGES in this step, but we change
NR_FREE_PAGES in step3. So NR_FREE_PAGES is wrong after offlining pages.
So there is no need to change NR_FREE_PAGES in step3.
This patch also fixs a problem in step2: if the migratetype is
MIGRATE_ISOLATE, we should not add NR_FRR_PAGES when we remove pages from
pcppages.
Signed-off-by: Wen Congyang <wency@cn.fujitsu.com>
Cc: David Rientjes <rientjes@google.com>
Cc: Jiang Liu <liuj97@gmail.com>
Cc: Len Brown <len.brown@intel.com>
Cc: Benjamin Herrenschmidt <benh@kernel.crashing.org>
Cc: Paul Mackerras <paulus@samba.org>
Cc: Christoph Lameter <cl@linux.com>
Cc: Minchan Kim <minchan.kim@gmail.com>
Cc: KOSAKI Motohiro <kosaki.motohiro@jp.fujitsu.com>
Cc: Yasuaki Ishimatsu <isimatu.yasuaki@jp.fujitsu.com>
Cc: Dave Hansen <dave@linux.vnet.ibm.com>
Cc: Mel Gorman <mel@csn.ul.ie>
Cc: Jianguo Wu <wujianguo106@gmail.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'mm/page_alloc.c')
-rw-r--r-- | mm/page_alloc.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/mm/page_alloc.c b/mm/page_alloc.c index 6f50cfe98a7b..4dba04f06880 100644 --- a/mm/page_alloc.c +++ b/mm/page_alloc.c | |||
@@ -667,11 +667,13 @@ static void free_pcppages_bulk(struct zone *zone, int count, | |||
667 | /* MIGRATE_MOVABLE list may include MIGRATE_RESERVEs */ | 667 | /* MIGRATE_MOVABLE list may include MIGRATE_RESERVEs */ |
668 | __free_one_page(page, zone, 0, mt); | 668 | __free_one_page(page, zone, 0, mt); |
669 | trace_mm_page_pcpu_drain(page, 0, mt); | 669 | trace_mm_page_pcpu_drain(page, 0, mt); |
670 | if (is_migrate_cma(mt)) | 670 | if (likely(get_pageblock_migratetype(page) != MIGRATE_ISOLATE)) { |
671 | __mod_zone_page_state(zone, NR_FREE_CMA_PAGES, 1); | 671 | __mod_zone_page_state(zone, NR_FREE_PAGES, 1); |
672 | if (is_migrate_cma(mt)) | ||
673 | __mod_zone_page_state(zone, NR_FREE_CMA_PAGES, 1); | ||
674 | } | ||
672 | } while (--to_free && --batch_free && !list_empty(list)); | 675 | } while (--to_free && --batch_free && !list_empty(list)); |
673 | } | 676 | } |
674 | __mod_zone_page_state(zone, NR_FREE_PAGES, count); | ||
675 | spin_unlock(&zone->lock); | 677 | spin_unlock(&zone->lock); |
676 | } | 678 | } |
677 | 679 | ||
@@ -6047,8 +6049,6 @@ __offline_isolated_pages(unsigned long start_pfn, unsigned long end_pfn) | |||
6047 | list_del(&page->lru); | 6049 | list_del(&page->lru); |
6048 | rmv_page_order(page); | 6050 | rmv_page_order(page); |
6049 | zone->free_area[order].nr_free--; | 6051 | zone->free_area[order].nr_free--; |
6050 | __mod_zone_page_state(zone, NR_FREE_PAGES, | ||
6051 | - (1UL << order)); | ||
6052 | for (i = 0; i < (1 << order); i++) | 6052 | for (i = 0; i < (1 << order); i++) |
6053 | SetPageReserved((page+i)); | 6053 | SetPageReserved((page+i)); |
6054 | pfn += (1 << order); | 6054 | pfn += (1 << order); |