The patch titled xen: fix section usage in xen-head.S and setup.c has been added to the -mm tree. Its filename is xen-fix-section-usage-in-xen-heads-and-setupc.patch Before you just go and hit "reply", please: a) Consider who else should be cc'ed b) Prefer to cc a suitable mailing list as well c) Ideally: find the original patch on the mailing list and do a reply-to-all to that, adding suitable additional cc's *** Remember to use Documentation/SubmitChecklist when testing your code *** See http://www.zip.com.au/~akpm/linux/patches/stuff/added-to-mm.txt to find out what to do about this The current -mm tree may be found at http://userweb.kernel.org/~akpm/mmotm/ ------------------------------------------------------ Subject: xen: fix section usage in xen-head.S and setup.c From: Sam Ravnborg <sam@xxxxxxxxxxxx> Failing to specify "ax" in the pushsection caused ld to generate an additional section for .init.text appending a number. A side effect of this was a section mismatch warning because modpost did not recognize a .init.text section named .init.text.1: WARNING: vmlinux.o(.text.head+0x247): Section mismatch: reference to .init.text.1:start_kernel (between 'is386' and 'check_x87') Fix this by hardcoding the "ax" in the pushsection. Thanks to Torlaf for reporting this. Alan Modra provided the hint that made me able to locate the root cause of this warning. And Mike Frysinger told me how to properly fix it using __INIT/__FINIT. Fix following Section mismatch warning in addition: WARNING: vmlinux.o(.text+0x14c8): Section mismatch: reference to .init.data:vsyscall_int80_start (between 'fiddle_vdso' and 'xen_setup_features') fiddle_vdso was only used from a __init function - so declare it __init. Signed-off-by: Sam Ravnborg <sam@xxxxxxxxxxxx> Cc: Jeremy Fitzhardinge <jeremy@xxxxxxxxxxxxx> Cc: Chris Wright <chrisw@xxxxxxxxxxxx> Cc: WANG Cong <xiyou.wangcong@xxxxxxxxx> Cc: Toralf Förster <toralf.foerster@xxxxxx> Cc: Ingo Molnar <mingo@xxxxxxx> Cc: Thomas Gleixner <tglx@xxxxxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- arch/x86/xen/setup.c | 2 +- arch/x86/xen/xen-head.S | 6 ++++-- 2 files changed, 5 insertions(+), 3 deletions(-) diff -puN arch/x86/xen/setup.c~xen-fix-section-usage-in-xen-heads-and-setupc arch/x86/xen/setup.c --- a/arch/x86/xen/setup.c~xen-fix-section-usage-in-xen-heads-and-setupc +++ a/arch/x86/xen/setup.c @@ -60,7 +60,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 const char vdso32_default_start; u32 *mask = VDSO32_SYMBOL(&vdso32_default_start, NOTE_MASK); diff -puN arch/x86/xen/xen-head.S~xen-fix-section-usage-in-xen-heads-and-setupc arch/x86/xen/xen-head.S --- a/arch/x86/xen/xen-head.S~xen-fix-section-usage-in-xen-heads-and-setupc +++ a/arch/x86/xen/xen-head.S @@ -4,16 +4,18 @@ #ifdef CONFIG_XEN #include <linux/elfnote.h> +#include <linux/init.h> #include <asm/boot.h> #include <xen/interface/elfnote.h> -.pushsection .init.text + __INIT ENTRY(startup_xen) movl %esi,xen_start_info cld movl $(init_thread_union+THREAD_SIZE),%esp jmp xen_start_kernel -.popsection + + __FINIT .pushsection .bss.page_aligned .align PAGE_SIZE_asm _ Patches currently in -mm which might be from sam@xxxxxxxxxxxx are origin.patch hrtimer-fix-section-mismatch.patch timer-fix-section-mismatch.patch sdio-fix-module-device-table-definition-for-m68k.patch git-kbuild.patch git-net.patch git-s390.patch git-scsi-misc.patch git-x86.patch xen-fix-section-usage-in-xen-heads-and-setupc.patch m68k-use-cc-cross-prefix.patch cris-avoid-using-arch-links-in-kconfig.patch remove-support-for-un-needed-_extratext-section.patch remove-support-for-un-needed-_extratext-section-checkpatch-fixes.patch kallsyms-should-prefer-non-weak-symbols.patch kallsyms-should-prefer-non-weak-symbols-checkpatch-fixes.patch tpm-infineon-section-mismatch.patch create-arch-kconfig.patch add-have_oprofile.patch add-have_kprobes.patch gpiolib-add-drivers-gpio-directory.patch gpiolib-add-gpio-provider-infrastructure.patch gpiolib-update-documentation-gpiotxt.patch gpiolib-pxa-platform-support.patch gpiolib-pcf857x-i2c-gpio-expander-support.patch gpiolib-mcp23s08-spi-gpio-expander-support.patch gpiolib-pca9539-i2c-gpio-expander-support.patch gpiolib-deprecate-obsolete-pca9539-driver.patch gpiolib-avr32-at32ap-platform-support.patch linux-kernel-markers-create-modpost-file.patch - To unsubscribe from this list: send the line "unsubscribe mm-commits" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html