linux-mm.kvack.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] mm: respect pre-allocated storage mapping for memmap
@ 2017-01-16 13:38 zhongjiang
  2017-01-16 14:43 ` Anshuman Khandual
  2017-01-17 10:25 ` Michal Hocko
  0 siblings, 2 replies; 9+ messages in thread
From: zhongjiang @ 2017-01-16 13:38 UTC (permalink / raw)
  To: dan.j.williams, hannes, mhocko; +Cc: linux-mm

From: zhong jiang <zhongjiang@huawei.com>

At present, we skip the reservation storage by the driver for
the zone_dvice. but the free pages set aside for the memmap is
ignored. And since the free pages is only used as the memmap,
so we can also skip the corresponding pages.

Signed-off-by: zhong jiang <zhongjiang@huawei.com>
---
 mm/page_alloc.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/mm/page_alloc.c b/mm/page_alloc.c
index d604d25..51d8d03 100644
--- a/mm/page_alloc.c
+++ b/mm/page_alloc.c
@@ -5047,7 +5047,7 @@ void __meminit memmap_init_zone(unsigned long size, int nid, unsigned long zone,
 	 * memory
 	 */
 	if (altmap && start_pfn == altmap->base_pfn)
-		start_pfn += altmap->reserve;
+		start_pfn += vmem_altmap_offset(altmap);
 
 	for (pfn = start_pfn; pfn < end_pfn; pfn++) {
 		/*
-- 
1.8.3.1

--
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>

^ permalink raw reply	[flat|nested] 9+ messages in thread

end of thread, other threads:[~2017-01-18 15:39 UTC | newest]

Thread overview: 9+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2017-01-16 13:38 [PATCH] mm: respect pre-allocated storage mapping for memmap zhongjiang
2017-01-16 14:43 ` Anshuman Khandual
2017-01-17  8:14   ` zhong jiang
2017-01-17 10:25 ` Michal Hocko
2017-01-17 13:58   ` zhong jiang
2017-01-17 17:15     ` Dan Williams
2017-01-18 10:09       ` zhong jiang
2017-01-18 13:27       ` zhong jiang
2017-01-18 15:39         ` Dan Williams

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox