Adrian Bunk
2007-Dec-11 22:21 UTC
[Xen-devel] [2.6 patch] xen: fiddle_vdso() must be __init
This patch fixes the following section mismatch: <-- snip --> ... WARNING: vmlinux.o(.text+0x2589): Section mismatch: reference to .init.data:vsyscall_int80_start (between ''fiddle_vdso'' and ''xen_setup_features'') ... <-- snip --> Signed-off-by: Adrian Bunk <bunk@kernel.org> --- bd7d683674d639a57c73b316972a28df43690a17 diff --git a/arch/x86/xen/setup.c b/arch/x86/xen/setup.c index f84e772..5e24f67 100644 --- a/arch/x86/xen/setup.c +++ b/arch/x86/xen/setup.c @@ -59,7 +59,7 @@ static void xen_idle(void) /* * Set the bit indicating "nosegneg" library variants should be used. */ -static void fiddle_vdso(void) +static void __init fiddle_vdso(void) { extern u32 VDSO_NOTE_MASK; /* See ../kernel/vsyscall-note.S. */ extern char vsyscall_int80_start; _______________________________________________ Xen-devel mailing list Xen-devel@lists.xensource.com http://lists.xensource.com/xen-devel
Jeremy Fitzhardinge
2007-Dec-11 23:12 UTC
[Xen-devel] Re: [2.6 patch] xen: fiddle_vdso() must be __init
Adrian Bunk wrote:> This patch fixes the following section mismatch: > > <-- snip --> > > ... > WARNING: vmlinux.o(.text+0x2589): Section mismatch: reference to .init.data:vsyscall_int80_start (between ''fiddle_vdso'' and ''xen_setup_features'') >Jan Beulich just posted a patch to do this, which I acked. J> ... > > <-- snip --> > > Signed-off-by: Adrian Bunk <bunk@kernel.org> > > --- > bd7d683674d639a57c73b316972a28df43690a17 > diff --git a/arch/x86/xen/setup.c b/arch/x86/xen/setup.c > index f84e772..5e24f67 100644 > --- a/arch/x86/xen/setup.c > +++ b/arch/x86/xen/setup.c > @@ -59,7 +59,7 @@ static void xen_idle(void) > /* > * Set the bit indicating "nosegneg" library variants should be used. > */ > -static void fiddle_vdso(void) > +static void __init fiddle_vdso(void) > { > extern u32 VDSO_NOTE_MASK; /* See ../kernel/vsyscall-note.S. */ > extern char vsyscall_int80_start; > >_______________________________________________ Xen-devel mailing list Xen-devel@lists.xensource.com http://lists.xensource.com/xen-devel