All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 1/3] x86: Section mismatch fixes
@ 2008-04-11 11:28 Jacek Luczak
  0 siblings, 0 replies; only message in thread
From: Jacek Luczak @ 2008-04-11 11:28 UTC (permalink / raw)
  To: Ingo Molnar, LKML, linux-next, tglx

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: Jacek Luczak <luczak.jacek@gmail.com>

---
 smpboot.c |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/arch/x86/kernel/smpboot.c b/arch/x86/kernel/smpboot.c
index 4882a35..de40681 100644
--- a/arch/x86/kernel/smpboot.c
+++ b/arch/x86/kernel/smpboot.c
@@ -437,7 +437,7 @@ valid_k7:
 #endif
 }
 
-void smp_checks(void)
+void __cpuinit smp_checks(void)
 {
 	if (smp_b_stepping)
 		printk(KERN_WARNING "WARNING: SMP operation may be unreliable"

^ permalink raw reply related	[flat|nested] only message in thread

only message in thread, other threads:[~2008-04-11 11:32 UTC | newest]

Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2008-04-11 11:28 [PATCH 1/3] x86: Section mismatch fixes Jacek Luczak

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.