aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJiang Liu <liuj97@gmail.com>2012-12-12 16:52:19 -0500
committerLinus Torvalds <torvalds@linux-foundation.org>2012-12-12 20:38:35 -0500
commit01cefaef40c48c714b7476e62781230993e10dbf (patch)
tree9dc4b2db2a257e1f8a533511dbdfb585712bc380
parent02c0ab684fc41bc13ba8d5ad89b0dc73b092fa08 (diff)
mm: provide more accurate estimation of pages occupied by memmap
If SPARSEMEM is enabled, it won't build page structures for non-existing pages (holes) within a zone, so provide a more accurate estimation of pages occupied by memmap if there are bigger holes within the zone. And pages for highmem zones' memmap will be allocated from lowmem, so charge nr_kernel_pages for that. [akpm@linux-foundation.org: mark calc_memmap_size __paging_init] Signed-off-by: Jiang Liu <jiang.liu@huawei.com> Cc: Wen Congyang <wency@cn.fujitsu.com> Cc: David Rientjes <rientjes@google.com> Cc: Maciej Rutecki <maciej.rutecki@gmail.com> Cc: Chris Clayton <chris2553@googlemail.com> Cc: "Rafael J . Wysocki" <rjw@sisk.pl> Cc: Mel Gorman <mgorman@suse.de> Cc: Minchan Kim <minchan@kernel.org> Cc: KAMEZAWA Hiroyuki <kamezawa.hiroyu@jp.fujitsu.com> Cc: Michal Hocko <mhocko@suse.cz> Tested-by: Jianguo Wu <wujianguo@huawei.com> Cc: Dave Hansen <dave@linux.vnet.ibm.com> Cc: Johannes Weiner <hannes@cmpxchg.org> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
-rw-r--r--mm/page_alloc.c26
1 files changed, 24 insertions, 2 deletions
diff --git a/mm/page_alloc.c b/mm/page_alloc.c
index 0b6a6d04300a..d187988e2b56 100644
--- a/mm/page_alloc.c
+++ b/mm/page_alloc.c
@@ -4489,6 +4489,26 @@ void __init set_pageblock_order(void)
4489 4489
4490#endif /* CONFIG_HUGETLB_PAGE_SIZE_VARIABLE */ 4490#endif /* CONFIG_HUGETLB_PAGE_SIZE_VARIABLE */
4491 4491
4492static unsigned long __paginginit calc_memmap_size(unsigned long spanned_pages,
4493 unsigned long present_pages)
4494{
4495 unsigned long pages = spanned_pages;
4496
4497 /*
4498 * Provide a more accurate estimation if there are holes within
4499 * the zone and SPARSEMEM is in use. If there are holes within the
4500 * zone, each populated memory region may cost us one or two extra
4501 * memmap pages due to alignment because memmap pages for each
4502 * populated regions may not naturally algined on page boundary.
4503 * So the (present_pages >> 4) heuristic is a tradeoff for that.
4504 */
4505 if (spanned_pages > present_pages + (present_pages >> 4) &&
4506 IS_ENABLED(CONFIG_SPARSEMEM))
4507 pages = present_pages;
4508
4509 return PAGE_ALIGN(pages * sizeof(struct page)) >> PAGE_SHIFT;
4510}
4511
4492/* 4512/*
4493 * Set up the zone data structures: 4513 * Set up the zone data structures:
4494 * - mark all pages reserved 4514 * - mark all pages reserved
@@ -4523,8 +4543,7 @@ static void __paginginit free_area_init_core(struct pglist_data *pgdat,
4523 * is used by this zone for memmap. This affects the watermark 4543 * is used by this zone for memmap. This affects the watermark
4524 * and per-cpu initialisations 4544 * and per-cpu initialisations
4525 */ 4545 */
4526 memmap_pages = 4546 memmap_pages = calc_memmap_size(size, realsize);
4527 PAGE_ALIGN(size * sizeof(struct page)) >> PAGE_SHIFT;
4528 if (freesize >= memmap_pages) { 4547 if (freesize >= memmap_pages) {
4529 freesize -= memmap_pages; 4548 freesize -= memmap_pages;
4530 if (memmap_pages) 4549 if (memmap_pages)
@@ -4545,6 +4564,9 @@ static void __paginginit free_area_init_core(struct pglist_data *pgdat,
4545 4564
4546 if (!is_highmem_idx(j)) 4565 if (!is_highmem_idx(j))
4547 nr_kernel_pages += freesize; 4566 nr_kernel_pages += freesize;
4567 /* Charge for highmem memmap if there are enough kernel pages */
4568 else if (nr_kernel_pages > memmap_pages * 2)
4569 nr_kernel_pages -= memmap_pages;
4548 nr_all_pages += freesize; 4570 nr_all_pages += freesize;
4549 4571
4550 zone->spanned_pages = size; 4572 zone->spanned_pages = size;