* [PATCH v2] mm/memblock: drop redundant 'struct page *' argument from memblock_free_pages()
@ 2025-12-29 13:52 shengminghu512
2025-12-30 13:35 ` Mike Rapoport
2025-12-30 20:16 ` David Hildenbrand (Red Hat)
0 siblings, 2 replies; 3+ messages in thread
From: shengminghu512 @ 2025-12-29 13:52 UTC (permalink / raw)
To: akpm, david, rppt
Cc: lorenzo.stoakes, Liam.Howlett, vbabka, surenb, mhocko, linux-mm,
linux-kernel, hu.shengming, zhang.run
From: Shengming Hu <hu.shengming@zte.com.cn>
memblock_free_pages() currently takes both a struct page * and the
corresponding PFN. The page pointer is always derived from the PFN at
call sites (pfn_to_page(pfn)), making the parameter redundant and also
allowing accidental mismatches between the two arguments.
Simplify the interface by removing the struct page * argument and
deriving the page locally from the PFN, after the deferred struct page
initialization check. This keeps the behavior unchanged while making
the helper harder to misuse.
Signed-off-by: Shengming Hu <hu.shengming@zte.com.cn>
---
Changes from v1:
https://lore.kernel.org/all/tencent_600D1BCC5E1B5DB4DDD98679DA7DC3123C06@qq.com/
- Initialize the page variable at declaration
mm/internal.h | 3 +--
mm/memblock.c | 4 ++--
mm/mm_init.c | 5 +++--
tools/testing/memblock/internal.h | 3 +--
4 files changed, 7 insertions(+), 8 deletions(-)
diff --git a/mm/internal.h b/mm/internal.h
index e430da900..5f93ee145 100644
--- a/mm/internal.h
+++ b/mm/internal.h
@@ -742,8 +742,7 @@ static inline void clear_zone_contiguous(struct zone *zone)
extern int __isolate_free_page(struct page *page, unsigned int order);
extern void __putback_isolated_page(struct page *page, unsigned int order,
int mt);
-extern void memblock_free_pages(struct page *page, unsigned long pfn,
- unsigned int order);
+extern void memblock_free_pages(unsigned long pfn, unsigned int order);
extern void __free_pages_core(struct page *page, unsigned int order,
enum meminit_context context);
diff --git a/mm/memblock.c b/mm/memblock.c
index 905d06b16..6e11f81c4 100644
--- a/mm/memblock.c
+++ b/mm/memblock.c
@@ -1771,7 +1771,7 @@ void __init memblock_free_late(phys_addr_t base, phys_addr_t size)
end = PFN_DOWN(base + size);
for (; cursor < end; cursor++) {
- memblock_free_pages(pfn_to_page(cursor), cursor, 0);
+ memblock_free_pages(cursor, 0);
totalram_pages_inc();
}
}
@@ -2216,7 +2216,7 @@ static void __init __free_pages_memory(unsigned long start, unsigned long end)
while (start + (1UL << order) > end)
order--;
- memblock_free_pages(pfn_to_page(start), start, order);
+ memblock_free_pages(start, order);
start += (1UL << order);
}
diff --git a/mm/mm_init.c b/mm/mm_init.c
index fc2a6f1e5..d5b91602f 100644
--- a/mm/mm_init.c
+++ b/mm/mm_init.c
@@ -2480,9 +2480,10 @@ void *__init alloc_large_system_hash(const char *tablename,
return table;
}
-void __init memblock_free_pages(struct page *page, unsigned long pfn,
- unsigned int order)
+void __init memblock_free_pages(unsigned long pfn, unsigned int order)
{
+ struct page *page = pfn_to_page(pfn);
+
if (IS_ENABLED(CONFIG_DEFERRED_STRUCT_PAGE_INIT)) {
int nid = early_pfn_to_nid(pfn);
diff --git a/tools/testing/memblock/internal.h b/tools/testing/memblock/internal.h
index 0ab4b53bb..009b97bbd 100644
--- a/tools/testing/memblock/internal.h
+++ b/tools/testing/memblock/internal.h
@@ -15,8 +15,7 @@ bool mirrored_kernelcore = false;
struct page {};
-void memblock_free_pages(struct page *page, unsigned long pfn,
- unsigned int order)
+void memblock_free_pages(unsigned long pfn, unsigned int order)
{
}
--
2.25.1
^ permalink raw reply [flat|nested] 3+ messages in thread* Re: [PATCH v2] mm/memblock: drop redundant 'struct page *' argument from memblock_free_pages()
2025-12-29 13:52 [PATCH v2] mm/memblock: drop redundant 'struct page *' argument from memblock_free_pages() shengminghu512
@ 2025-12-30 13:35 ` Mike Rapoport
2025-12-30 20:16 ` David Hildenbrand (Red Hat)
1 sibling, 0 replies; 3+ messages in thread
From: Mike Rapoport @ 2025-12-30 13:35 UTC (permalink / raw)
To: akpm, david, shengminghu512
Cc: Mike Rapoport, lorenzo.stoakes, Liam.Howlett, vbabka, surenb,
mhocko, linux-mm, linux-kernel, hu.shengming, zhang.run
On Mon, 29 Dec 2025 21:52:27 +0800, shengminghu512 wrote:
> memblock_free_pages() currently takes both a struct page * and the
> corresponding PFN. The page pointer is always derived from the PFN at
> call sites (pfn_to_page(pfn)), making the parameter redundant and also
> allowing accidental mismatches between the two arguments.
>
> Simplify the interface by removing the struct page * argument and
> deriving the page locally from the PFN, after the deferred struct page
> initialization check. This keeps the behavior unchanged while making
> the helper harder to misuse.
>
> [...]
Applied to for-next branch of memblock.git tree, thanks!
[1/1] mm/memblock: drop redundant 'struct page *' argument from memblock_free_pages()
commit: 42496efbfba1741fd4f1278366249bce9d34884a
tree: https://git.kernel.org/pub/scm/linux/kernel/git/rppt/memblock
branch: for-next
--
Sincerely yours,
Mike.
^ permalink raw reply [flat|nested] 3+ messages in thread* Re: [PATCH v2] mm/memblock: drop redundant 'struct page *' argument from memblock_free_pages()
2025-12-29 13:52 [PATCH v2] mm/memblock: drop redundant 'struct page *' argument from memblock_free_pages() shengminghu512
2025-12-30 13:35 ` Mike Rapoport
@ 2025-12-30 20:16 ` David Hildenbrand (Red Hat)
1 sibling, 0 replies; 3+ messages in thread
From: David Hildenbrand (Red Hat) @ 2025-12-30 20:16 UTC (permalink / raw)
To: shengminghu512, akpm, rppt
Cc: lorenzo.stoakes, Liam.Howlett, vbabka, surenb, mhocko, linux-mm,
linux-kernel, hu.shengming, zhang.run
On 12/29/25 14:52, shengminghu512 wrote:
> From: Shengming Hu <hu.shengming@zte.com.cn>
>
> memblock_free_pages() currently takes both a struct page * and the
> corresponding PFN. The page pointer is always derived from the PFN at
> call sites (pfn_to_page(pfn)), making the parameter redundant and also
> allowing accidental mismatches between the two arguments.
>
> Simplify the interface by removing the struct page * argument and
> deriving the page locally from the PFN, after the deferred struct page
> initialization check. This keeps the behavior unchanged while making
> the helper harder to misuse.
>
> Signed-off-by: Shengming Hu <hu.shengming@zte.com.cn>
> ---
Reviewed-by: David Hildenbrand (Red Hat) <david@kernel.org>
--
Cheers
David
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2025-12-30 20:16 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2025-12-29 13:52 [PATCH v2] mm/memblock: drop redundant 'struct page *' argument from memblock_free_pages() shengminghu512
2025-12-30 13:35 ` Mike Rapoport
2025-12-30 20:16 ` David Hildenbrand (Red Hat)
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox