Skip to content

Commit

Permalink
powerpc/smp: Add __init to init_big_cores()
Browse files Browse the repository at this point in the history
[ Upstream commit 9014eab ]

It fixes this link warning:

WARNING: modpost: vmlinux.o(.text.unlikely+0x2d98): Section mismatch in reference from the function init_big_cores.isra.0() to the function .init.text:init_thread_group_cache_map()
The function init_big_cores.isra.0() references
the function __init init_thread_group_cache_map().
This is often because init_big_cores.isra.0 lacks a __init
annotation or the annotation of init_thread_group_cache_map is wrong.

Fixes: 425752c ("powerpc: Detect the presence of big-cores via "ibm, thread-groups"")
Signed-off-by: Cédric Le Goater <clg@kaod.org>
Signed-off-by: Michael Ellerman <mpe@ellerman.id.au>
Link: https://lore.kernel.org/r/20201221074154.403779-1-clg@kaod.org
Signed-off-by: Sasha Levin <sashal@kernel.org>
  • Loading branch information
legoater authored and gregkh committed Dec 30, 2020
1 parent d670c4b commit 3f27cb2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion arch/powerpc/kernel/smp.c
Expand Up @@ -919,7 +919,7 @@ static struct sched_domain_topology_level powerpc_topology[] = {
{ NULL, },
};

static int init_big_cores(void)
static int __init init_big_cores(void)
{
int cpu;

Expand Down

0 comments on commit 3f27cb2

Please sign in to comment.