linux-mm.kvack.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] mm/mm_init: Fix the zone->managed_pages comment to match the code
@ 2024-12-29 18:09 Jiwen Qi
  2025-01-09 14:28 ` David Hildenbrand
  0 siblings, 1 reply; 3+ messages in thread
From: Jiwen Qi @ 2024-12-29 18:09 UTC (permalink / raw)
  To: linux-mm; +Cc: rppt, Jiwen Qi

The invocation of zone_init_internals(zone, j, nid, zone->present_pages)
initializes zone->managed_pages to zone->present_pages. zone->present_pages
is not 0 when the zone is not empty.

Signed-off-by: Jiwen Qi <jiwen7.qi@gmail.com>
---
 mm/mm_init.c | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

diff --git a/mm/mm_init.c b/mm/mm_init.c
index 24b68b425afb..6cf6243c4c52 100644
--- a/mm/mm_init.c
+++ b/mm/mm_init.c
@@ -1567,8 +1567,9 @@ static void __init free_area_init_core(struct pglist_data *pgdat)
 		unsigned long size = zone->spanned_pages;
 
 		/*
-		 * Initialize zone->managed_pages as 0 , it will be reset
-		 * when memblock allocator frees pages into buddy system.
+		 * Initialize zone->managed_pages to zone->present_pages, it
+		 * will be reset when memblock allocator frees pages into
+		 * buddy system.
 		 */
 		zone_init_internals(zone, j, nid, zone->present_pages);
 

base-commit: 4bbf9020becbfd8fc2c3da790855b7042fad455b
-- 
2.25.1



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

* Re: [PATCH] mm/mm_init: Fix the zone->managed_pages comment to match the code
  2024-12-29 18:09 [PATCH] mm/mm_init: Fix the zone->managed_pages comment to match the code Jiwen Qi
@ 2025-01-09 14:28 ` David Hildenbrand
  2025-01-12 16:10   ` [PATCH v2] " Jiwen Qi
  0 siblings, 1 reply; 3+ messages in thread
From: David Hildenbrand @ 2025-01-09 14:28 UTC (permalink / raw)
  To: Jiwen Qi, linux-mm; +Cc: rppt

On 29.12.24 19:09, Jiwen Qi wrote:
> The invocation of zone_init_internals(zone, j, nid, zone->present_pages)
> initializes zone->managed_pages to zone->present_pages. zone->present_pages
> is not 0 when the zone is not empty.
> 
> Signed-off-by: Jiwen Qi <jiwen7.qi@gmail.com>
> ---
>   mm/mm_init.c | 5 +++--
>   1 file changed, 3 insertions(+), 2 deletions(-)
> 
> diff --git a/mm/mm_init.c b/mm/mm_init.c
> index 24b68b425afb..6cf6243c4c52 100644
> --- a/mm/mm_init.c
> +++ b/mm/mm_init.c
> @@ -1567,8 +1567,9 @@ static void __init free_area_init_core(struct pglist_data *pgdat)
>   		unsigned long size = zone->spanned_pages;
>   
>   		/*
> -		 * Initialize zone->managed_pages as 0 , it will be reset
> -		 * when memblock allocator frees pages into buddy system.
> +		 * Initialize zone->managed_pages to zone->present_pages, it
> +		 * will be reset when memblock allocator frees pages into
> +		 * buddy system.


Maybe we can be a bit clearer:

"Initialize zone->managed_pages to zone->present_pages as a first rough 
estimate. memblock_free_all() will reset zone->managed_pages to 0, and
calculate the actual managed pages as they are freed to the buddy."

?

It might also make sense to mention commit 0ac5e785dcb797 in the patch 
description, that contains some more details.


-- 
Cheers,

David / dhildenb



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

* [PATCH v2] mm/mm_init: Fix the zone->managed_pages comment to match the code
  2025-01-09 14:28 ` David Hildenbrand
@ 2025-01-12 16:10   ` Jiwen Qi
  0 siblings, 0 replies; 3+ messages in thread
From: Jiwen Qi @ 2025-01-12 16:10 UTC (permalink / raw)
  To: david; +Cc: linux-mm, rppt

The invocation of zone_init_internals(zone, j, nid, zone->present_pages)
initializes zone->managed_pages to zone->present_pages. zone->present_pages
is not 0 when the zone is not empty.

See commit 0ac5e785dcb797 ("mm/mm_init.c: remove meaningless calculation
of zone->managed_pages in free_area_init_core()") for details.

Signed-off-by: Jiwen Qi <jiwen7.qi@gmail.com>
---
 mm/mm_init.c | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

diff --git a/mm/mm_init.c b/mm/mm_init.c
index 24b68b425afb..48a4f661db98 100644
--- a/mm/mm_init.c
+++ b/mm/mm_init.c
@@ -1567,8 +1567,9 @@ static void __init free_area_init_core(struct pglist_data *pgdat)
 		unsigned long size = zone->spanned_pages;
 
 		/*
-		 * Initialize zone->managed_pages as 0 , it will be reset
-		 * when memblock allocator frees pages into buddy system.
+		 * Initialize zone->managed_pages to zone->present_pages as a first rough
+		 * estimate. memblock_free_all() will reset zone->managed_pages to 0, and
+		 * calculate the actual managed pages as they are freed to the buddy.
 		 */
 		zone_init_internals(zone, j, nid, zone->present_pages);
 

base-commit: 4bbf9020becbfd8fc2c3da790855b7042fad455b
-- 
2.25.1



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

end of thread, other threads:[~2025-01-12 16:10 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2024-12-29 18:09 [PATCH] mm/mm_init: Fix the zone->managed_pages comment to match the code Jiwen Qi
2025-01-09 14:28 ` David Hildenbrand
2025-01-12 16:10   ` [PATCH v2] " Jiwen Qi

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