[<prev] [next>] [day] [month] [year] [list]
Message-Id: <20220711053108.328029-1-liyupeng@zbhlos.com>
Date: Mon, 11 Jul 2022 13:31:08 +0800
From: Yupeng Li <liyupeng@...los.com>
To: chenhuacai@...nel.org, jiaxun.yang@...goat.com,
tsbogend@...ha.franken.de
Cc: linux-mips@...r.kernel.org, linux-kernel@...r.kernel.org,
Yupeng Li <liyupeng@...los.com>, Caicai <caizp2008@....com>
Subject: [PATCH 1/1] Loongson: Fix section mismatch warning
init_numa_memory() is annotated __init and not used by any module,
thus don't export it.
Remove not needed EXPORT_SYMBOL for init_numa_memory() to fix the
following section mismatch warning:
CHK include/generated/compile.h
UPD include/generated/compile.h
CC init/version.o
AR init/built-in.a
LD vmlinux.o
MODPOST vmlinux.symvers
WARNING: modpost: vmlinux.o(___ksymtab+prom_init_numa_memory+0x0): Section mismatch in reference from the variable __ksymtab_prom_init_numa_memory to the function .init.text:prom_init_numa_memory()
The symbol prom_init_numa_memory is exported and annotated __init
Fix this by removing the __init annotation of prom_init_numa_memory or drop the export.
MODINFO modules.builtin.modinfo
GEN modules.builtin
This is build on Linux 5.19-rc5.
Signed-off-by: Yupeng Li <liyupeng@...los.com>
Reviewed-by: Caicai <caizp2008@....com>
---
arch/mips/loongson64/numa.c | 1 -
1 file changed, 1 deletion(-)
diff --git a/arch/mips/loongson64/numa.c b/arch/mips/loongson64/numa.c
index 69a533148efd..8f61e93c0c5b 100644
--- a/arch/mips/loongson64/numa.c
+++ b/arch/mips/loongson64/numa.c
@@ -196,7 +196,6 @@ void __init prom_init_numa_memory(void)
pr_info("CP0_PageGrain: CP0 5.1 (0x%x)\n", read_c0_pagegrain());
prom_meminit();
}
-EXPORT_SYMBOL(prom_init_numa_memory);
pg_data_t * __init arch_alloc_nodedata(int nid)
{
--
2.34.1
Powered by blists - more mailing lists