linux-mm.kvack.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] mm/mm_init.c: add zidcache to the init_reserved_page function
@ 2024-09-04 11:55 Qiang Liu
  2024-09-04 20:41 ` Andrew Morton
  0 siblings, 1 reply; 2+ messages in thread
From: Qiang Liu @ 2024-09-04 11:55 UTC (permalink / raw)
  To: rppt, akpm; +Cc: linux-mm, linux-kernel, Qiang Liu

Each call to the init_reserved_page function will look up the
corresponding zid for the given pfn parameter. Even if subsequent
calls have the same zid for the pfn as the current one, the lookup
will be repeated.

During system initialization, the memmap_init_reserved_pages function
calls init_reserved_page for each contiguous memory region in mem_region.
Implementing a cache for zid can significantly improve performance.
Tests have shown that adding a zid cache reduces the execution time of
the memmap_init_reserved_pages function by over 7%.

Signed-off-by: Qiang Liu <liuq131@chinatelecom.cn>
---
 mm/mm_init.c | 18 ++++++++++++------
 1 file changed, 12 insertions(+), 6 deletions(-)

diff --git a/mm/mm_init.c b/mm/mm_init.c
index 51960079875b..2d5b5ffa962b 100644
--- a/mm/mm_init.c
+++ b/mm/mm_init.c
@@ -710,19 +710,25 @@ static void __meminit init_reserved_page(unsigned long pfn, int nid)
 {
 	pg_data_t *pgdat;
 	int zid;
+	struct zone *zone;
+	static int zidcache;
 
 	if (early_page_initialised(pfn, nid))
 		return;
 
 	pgdat = NODE_DATA(nid);
 
-	for (zid = 0; zid < MAX_NR_ZONES; zid++) {
-		struct zone *zone = &pgdat->node_zones[zid];
+	zone = &pgdat->node_zones[zidcache];
+	if (unlikely(zone_spans_pfn(zone, pfn)))
+		for (zid = 0; zid < MAX_NR_ZONES; zid++) {
+			zone = &pgdat->node_zones[zid];
 
-		if (zone_spans_pfn(zone, pfn))
-			break;
-	}
-	__init_single_page(pfn_to_page(pfn), pfn, zid, nid);
+			if (zone_spans_pfn(zone, pfn)) {
+				zidcache = zid;
+				break;
+			}
+		}
+	__init_single_page(pfn_to_page(pfn), pfn, zidcache, nid);
 }
 #else
 static inline void pgdat_set_deferred_range(pg_data_t *pgdat) {}
-- 
2.27.0



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

end of thread, other threads:[~2024-09-04 20:41 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2024-09-04 11:55 [PATCH] mm/mm_init.c: add zidcache to the init_reserved_page function Qiang Liu
2024-09-04 20:41 ` Andrew Morton

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