VisionFive2 Linux kernel

StarFive Tech Linux Kernel for VisionFive (JH7110) boards (mirror)

More than 9999 Commits   33 Branches   55 Tags
author: Mike Rapoport <rppt@linux.ibm.com> 2021-09-02 14:58:10 -0700 committer: Linus Torvalds <torvalds@linux-foundation.org> 2021-09-03 09:58:15 -0700 commit: 3b446da6be7a722d769e23f68dbaf4ebb2eda542 parent: b346075fcf5dda7f9e9ae671703aae60e8a94564
Commit Summary:
mm/page_alloc: make alloc_node_mem_map() __init rather than __ref
Diffstat:
1 file changed, 2 insertions, 2 deletions
diff --git a/mm/page_alloc.c b/mm/page_alloc.c
index 04021e37120e..05079b4ae7bc 100644
--- a/mm/page_alloc.c
+++ b/mm/page_alloc.c
@@ -7515,7 +7515,7 @@ static void __init free_area_init_core(struct pglist_data *pgdat)
 }
 
 #ifdef CONFIG_FLATMEM
-static void __ref alloc_node_mem_map(struct pglist_data *pgdat)
+static void __init alloc_node_mem_map(struct pglist_data *pgdat)
 {
 	unsigned long __maybe_unused start = 0;
 	unsigned long __maybe_unused offset = 0;
@@ -7561,7 +7561,7 @@ static void __ref alloc_node_mem_map(struct pglist_data *pgdat)
 #endif
 }
 #else
-static void __ref alloc_node_mem_map(struct pglist_data *pgdat) { }
+static inline void alloc_node_mem_map(struct pglist_data *pgdat) { }
 #endif /* CONFIG_FLATMEM */
 
 #ifdef CONFIG_DEFERRED_STRUCT_PAGE_INIT