mm: fix section mismatch warnings
modpost had two cases hardcoded for mm/ Shift over to __init_refok and kill the hardcoded function names in modpost. This has the drawback that the functions will always be kept no matter configuration. With previous code the function were placed in init section if configuration allowed it. Signed-off-by: Sam Ravnborg <sam@ravnborg.org>
This commit is contained in:
@@ -2165,7 +2165,7 @@ void __init setup_per_cpu_pageset(void)
|
||||
|
||||
#endif
|
||||
|
||||
static __meminit noinline
|
||||
static noinline __init_refok
|
||||
int zone_wait_table_init(struct zone *zone, unsigned long zone_size_pages)
|
||||
{
|
||||
int i;
|
||||
@@ -2678,7 +2678,7 @@ static void __meminit free_area_init_core(struct pglist_data *pgdat,
|
||||
}
|
||||
}
|
||||
|
||||
static void __meminit alloc_node_mem_map(struct pglist_data *pgdat)
|
||||
static void __init_refok alloc_node_mem_map(struct pglist_data *pgdat)
|
||||
{
|
||||
/* Skip empty nodes */
|
||||
if (!pgdat->node_spanned_pages)
|
||||
|
Reference in New Issue
Block a user