init: provide a generic free_initmem implementation

Patch series "provide a generic free_initmem implementation", v2.

Many architectures implement free_initmem() in exactly the same or very
similar way: they wrap the call to free_initmem_default() with sometimes
different 'poison' parameter.

These patches switch those architectures to use a generic implementation
that does free_initmem_default(POISON_FREE_INITMEM).

This was inspired by Christoph's patches for free_initrd_mem [1] and I
shamelessly copied changelog entries from his patches :)

[1] https://lore.kernel.org/lkml/20190213174621.29297-1-hch@lst.de/

This patch (of 2):

For most architectures free_initmem just a wrapper for the same
free_initmem_default(-1) call.  Provide that as a generic implementation
marked __weak.

Link: http://lkml.kernel.org/r/1550515285-17446-2-git-send-email-rppt@linux.ibm.com
Signed-off-by: Mike Rapoport <rppt@linux.ibm.com>
Reviewed-by: Andrew Morton <akpm@linux-foundation.org>
Cc: Christoph Hellwig <hch@lst.de>
Cc: Palmer Dabbelt <palmer@sifive.com>
Cc: Richard Kuo <rkuo@codeaurora.org>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
This commit is contained in:
Mike Rapoport 2019-05-13 17:18:40 -07:00 committed by Linus Torvalds
parent f94f7434cb
commit 997aef68af
12 changed files with 5 additions and 60 deletions

View File

@ -285,9 +285,3 @@ mem_init(void)
memblock_free_all();
mem_init_print_info(NULL);
}
void
free_initmem(void)
{
free_initmem_default(-1);
}

View File

@ -206,11 +206,3 @@ void __init mem_init(void)
memblock_free_all();
mem_init_print_info(NULL);
}
/*
* free_initmem: Free all the __init memory.
*/
void __ref free_initmem(void)
{
free_initmem_default(-1);
}

View File

@ -68,8 +68,3 @@ void __init mem_init(void)
mem_init_print_info(NULL);
}
void __init free_initmem(void)
{
free_initmem_default(-1);
}

View File

@ -102,9 +102,3 @@ void __init mem_init(void)
mem_init_print_info(NULL);
}
void
free_initmem(void)
{
free_initmem_default(-1);
}

View File

@ -186,11 +186,6 @@ void __init setup_memory(void)
paging_init();
}
void free_initmem(void)
{
free_initmem_default(-1);
}
void __init mem_init(void)
{
high_memory = (void *)__va(memory_start + lowmem_size - 1);

View File

@ -252,11 +252,6 @@ void __init mem_init(void)
return;
}
void free_initmem(void)
{
free_initmem_default(-1);
}
void __set_fixmap(enum fixed_addresses idx,
phys_addr_t phys, pgprot_t flags)
{

View File

@ -82,11 +82,6 @@ void __init mmu_init(void)
flush_tlb_all();
}
void __ref free_initmem(void)
{
free_initmem_default(-1);
}
#define __page_aligned(order) __aligned(PAGE_SIZE << (order))
pgd_t swapper_pg_dir[PTRS_PER_PGD] __page_aligned(PGD_ORDER);
pte_t invalid_pte_table[PTRS_PER_PTE] __page_aligned(PTE_ORDER);

View File

@ -223,8 +223,3 @@ void __init mem_init(void)
mem_init_done = 1;
return;
}
void free_initmem(void)
{
free_initmem_default(-1);
}

View File

@ -403,11 +403,6 @@ void __init mem_init(void)
mem_init_done = 1;
}
void free_initmem(void)
{
free_initmem_default(-1);
}
#ifdef CONFIG_MEMORY_HOTPLUG
int arch_add_memory(int nid, u64 start, u64 size, struct vmem_altmap *altmap,
bool want_memblock)

View File

@ -287,8 +287,3 @@ void __init mem_init(void)
sysctl_overcommit_memory = OVERCOMMIT_ALWAYS;
}
}
void free_initmem(void)
{
free_initmem_default(-1);
}

View File

@ -216,11 +216,6 @@ void free_initrd_mem(unsigned long start, unsigned long end)
}
#endif
void free_initmem(void)
{
free_initmem_default(-1);
}
static void __init parse_memmap_one(char *p)
{
char *oldp;

View File

@ -1074,6 +1074,11 @@ static inline void mark_readonly(void)
}
#endif
void __weak free_initmem(void)
{
free_initmem_default(-1);
}
static int __ref kernel_init(void *unused)
{
int ret;