The patch titled x86-fix-vdso-mapping-for-aout-executables x86_64 fix has been added to the -mm tree. Its filename is x86-fix-vdso-mapping-for-aout-executables-x86_64-fixpatch.patch *** 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 ------------------------------------------------------ Subject: x86-fix-vdso-mapping-for-aout-executables x86_64 fix From: "Parag Warudkar" <parag.warudkar@xxxxxxxxx> I think the easy and correct fix for this situation is defining CONFIG_ARCH_HAS_SETUP_ADDITIONAL_PAGES on x86_64 only if IA32_EMULATION is defined. (Because x86_64 proper doesn't seem to require arch_setup_additional_pages() only IA32 emulation requires it.) Signed-off-by: Parag Warudkar <parag.warudkar@xxxxxxxxx> Cc: Andi Kleen <ak@xxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxx> --- arch/x86_64/Kconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff -puN arch/x86_64/Kconfig~x86-fix-vdso-mapping-for-aout-executables-x86_64-fixpatch arch/x86_64/Kconfig --- a/arch/x86_64/Kconfig~x86-fix-vdso-mapping-for-aout-executables-x86_64-fixpatch +++ a/arch/x86_64/Kconfig @@ -401,7 +401,7 @@ config HAVE_ARCH_EARLY_PFN_TO_NID config ARCH_HAS_SETUP_ADDITIONAL_PAGES bool default y - depends on X86_64 + depends on X86_64 && IA32_EMULATION config OUT_OF_LINE_PFN_TO_PAGE def_bool y _ Patches currently in -mm which might be from parag.warudkar@xxxxxxxxx are x86-fix-vdso-mapping-for-aout-executables.patch x86-fix-vdso-mapping-for-aout-executables-fixes.patch x86-fix-vdso-mapping-for-aout-executables-fixes-2.patch x86-fix-vdso-mapping-for-aout-executables-cleanups.patch x86-fix-vdso-mapping-for-aout-executables-doh.patch x86-fix-vdso-mapping-for-aout-executables-sh-fix.patch x86-fix-vdso-mapping-for-aout-executables-x86_64-fixpatch.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