All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH v1] csky: use free_initmem_default() in free_initmem()
@ 2021-01-26 18:14 David Hildenbrand
  2021-01-26 18:26 ` Mike Rapoport
  0 siblings, 1 reply; 6+ messages in thread
From: David Hildenbrand @ 2021-01-26 18:14 UTC (permalink / raw)
  To: linux-kernel
  Cc: linux-mm, linux-csky, David Hildenbrand, Andrew Morton, Guo Ren,
	Mike Rapoport, Oscar Salvador, Michal Hocko, Wei Yang

The existing code is essentially
free_initmem_default()->free_reserved_area() without poisoning.

Note that existing code missed to update the managed page count of the
zone.

Cc: Andrew Morton <akpm@linux-foundation.org>
Cc: Guo Ren <guoren@kernel.org>
Cc: Mike Rapoport <rppt@kernel.org>
Cc: Oscar Salvador <osalvador@suse.de>
Cc: Michal Hocko <mhocko@kernel.org>
Cc: Wei Yang <richard.weiyang@linux.alibaba.com>
Signed-off-by: David Hildenbrand <david@redhat.com>
---

Not compile tested as documentation on how to get
	https://gitlab.com/c-sky/buildroot
running, especially with a custom kernel, is a bit sparse.

---
 arch/csky/mm/init.c | 17 +----------------
 1 file changed, 1 insertion(+), 16 deletions(-)

diff --git a/arch/csky/mm/init.c b/arch/csky/mm/init.c
index 81e4e5e78f38..894050a8ce09 100644
--- a/arch/csky/mm/init.c
+++ b/arch/csky/mm/init.c
@@ -110,24 +110,9 @@ void __init mem_init(void)
 	mem_init_print_info(NULL);
 }
 
-extern char __init_begin[], __init_end[];
-
 void free_initmem(void)
 {
-	unsigned long addr;
-
-	addr = (unsigned long) &__init_begin;
-
-	while (addr < (unsigned long) &__init_end) {
-		ClearPageReserved(virt_to_page(addr));
-		init_page_count(virt_to_page(addr));
-		free_page(addr);
-		totalram_pages_inc();
-		addr += PAGE_SIZE;
-	}
-
-	pr_info("Freeing unused kernel memory: %dk freed\n",
-	((unsigned int)&__init_end - (unsigned int)&__init_begin) >> 10);
+	free_initmem_default(-1);
 }
 
 void pgd_init(unsigned long *p)
-- 
2.29.2


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

end of thread, other threads:[~2021-01-27  9:14 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-01-26 18:14 [PATCH v1] csky: use free_initmem_default() in free_initmem() David Hildenbrand
2021-01-26 18:26 ` Mike Rapoport
2021-01-27  7:52   ` Guo Ren
2021-01-27  7:52     ` Guo Ren
2021-01-27  8:49     ` David Hildenbrand
2021-01-27  9:06       ` Guo Ren

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.