Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit df96323d authored by Jacek Luczak's avatar Jacek Luczak Committed by Ingo Molnar
Browse files

x86: section mismatch fixes, #1



This patch fixes mismatch warnings in smp_checks() (in arch/x86/kernel/smpboot.c):

WARNING: arch/x86/kernel/built-in.o(.text+0x11922): Section mismatch in reference from the function smp_checks()
to the variable .cpuinit.data:smp_b_stepping
The function smp_checks() references
the variable __cpuinitdata smp_b_stepping.
This is often because smp_checks lacks a __cpuinitdata
annotation or the annotation of smp_b_stepping is wrong.

Signed-off-by: default avatarJacek Luczak <luczak.jacek@gmail.com>
Signed-off-by: default avatarIngo Molnar <mingo@elte.hu>
parent 63d38198
Loading
Loading
Loading
Loading
+1 −1
Original line number Original line Diff line number Diff line
@@ -437,7 +437,7 @@ static void __cpuinit smp_apply_quirks(struct cpuinfo_x86 *c)
#endif
#endif
}
}


void smp_checks(void)
void __cpuinit smp_checks(void)
{
{
	if (smp_b_stepping)
	if (smp_b_stepping)
		printk(KERN_WARNING "WARNING: SMP operation may be unreliable"
		printk(KERN_WARNING "WARNING: SMP operation may be unreliable"