powerpc: fix function annotations to avoid section mismatch warnings with gcc-10
authorVladis Dronov <vdronov@redhat.com>
Wed, 29 Jul 2020 13:37:41 +0000 (15:37 +0200)
committerMichael Ellerman <mpe@ellerman.id.au>
Thu, 30 Jul 2020 00:50:07 +0000 (10:50 +1000)
Certain warnings are emitted for powerpc code when building with a gcc-10
toolset:

    WARNING: modpost: vmlinux.o(.text.unlikely+0x377c): Section mismatch in
    reference from the function remove_pmd_table() to the function
    .meminit.text:split_kernel_mapping()
    The function remove_pmd_table() references
    the function __meminit split_kernel_mapping().
    This is often because remove_pmd_table lacks a __meminit
    annotation or the annotation of split_kernel_mapping is wrong.

Add the appropriate __init and __meminit annotations to make modpost not
complain. In all the cases there are just a single callsite from another
__init or __meminit function:

__meminit remove_pagetable() -> remove_pud_table() -> remove_pmd_table()
__init prom_init() -> setup_secure_guest()
__init xive_spapr_init() -> xive_spapr_disabled()

Signed-off-by: Vladis Dronov <vdronov@redhat.com>
Signed-off-by: Michael Ellerman <mpe@ellerman.id.au>
Link: https://lore.kernel.org/r/20200729133741.62789-1-vdronov@redhat.com
arch/powerpc/kernel/prom_init.c
arch/powerpc/mm/book3s64/radix_pgtable.c
arch/powerpc/sysdev/xive/spapr.c

index f279a1f58fa72c3d246b34d1ef20000a33fcf195..ae7ec990319197076a14814a7542c2419e6287ad 100644 (file)
@@ -3270,7 +3270,7 @@ static int enter_secure_mode(unsigned long kbase, unsigned long fdt)
 /*
  * Call the Ultravisor to transfer us to secure memory if we have an ESM blob.
  */
-static void setup_secure_guest(unsigned long kbase, unsigned long fdt)
+static void __init setup_secure_guest(unsigned long kbase, unsigned long fdt)
 {
        int ret;
 
@@ -3300,7 +3300,7 @@ static void setup_secure_guest(unsigned long kbase, unsigned long fdt)
        }
 }
 #else
-static void setup_secure_guest(unsigned long kbase, unsigned long fdt)
+static void __init setup_secure_guest(unsigned long kbase, unsigned long fdt)
 {
 }
 #endif /* CONFIG_PPC_SVM */
index a8f46a6862196c2a691f3f103e11d68afffd5c7c..28c784976beda540c875c99d2ca041bf2aba548e 100644 (file)
@@ -823,7 +823,7 @@ static void remove_pte_table(pte_t *pte_start, unsigned long addr,
        }
 }
 
-static void remove_pmd_table(pmd_t *pmd_start, unsigned long addr,
+static void __meminit remove_pmd_table(pmd_t *pmd_start, unsigned long addr,
                             unsigned long end)
 {
        unsigned long next;
@@ -853,7 +853,7 @@ static void remove_pmd_table(pmd_t *pmd_start, unsigned long addr,
        }
 }
 
-static void remove_pud_table(pud_t *pud_start, unsigned long addr,
+static void __meminit remove_pud_table(pud_t *pud_start, unsigned long addr,
                             unsigned long end)
 {
        unsigned long next;
index f0551a2be9df4039c92b0e7b500f523ed101558a..1e3674d7ea7bce396f791b0558b52597d8f938a5 100644 (file)
@@ -768,7 +768,7 @@ static const u8 *get_vec5_feature(unsigned int index)
        return vec5 + index;
 }
 
-static bool xive_spapr_disabled(void)
+static bool __init xive_spapr_disabled(void)
 {
        const u8 *vec5_xive;