The patch titled x86_64: Pass -32 to the assembler when compiling the 32bit vsyscall pages has been removed from the -mm tree. Its filename is x86_64-pass-32-to-the-assembler-when-compiling.patch This patch was probably dropped from -mm because it has now been merged into a subsystem tree or into Linus's tree, or because it was folded into its parent patch in the -mm tree. From: "Andi Kleen" <ak@xxxxxxx> This quietens warnings and actually fixes a bug. The unwind tables would come out wrong without -32, causing pthread cancellation during them to crash in the gcc runtime. The problem seems to only happen with newer binutils (it doesn't happen with 2.16.91.0.2 but happens wit 2.16.91.0.5) Thanks to David Altobelli <david.altobelli@xxxxxx> and Brian Baker <Brian.B@xxxxxx> for test case and initial analysis. Signed-off-by: Andi Kleen <ak@xxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxx> --- arch/x86_64/ia32/Makefile | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff -puN arch/x86_64/ia32/Makefile~x86_64-pass-32-to-the-assembler-when-compiling arch/x86_64/ia32/Makefile --- devel/arch/x86_64/ia32/Makefile~x86_64-pass-32-to-the-assembler-when-compiling 2006-04-22 02:34:58.000000000 -0700 +++ devel-akpm/arch/x86_64/ia32/Makefile 2006-04-22 02:34:58.000000000 -0700 @@ -27,5 +27,5 @@ $(obj)/vsyscall-sysenter.so $(obj)/vsysc $(obj)/vsyscall-%.so: $(src)/vsyscall.lds $(obj)/vsyscall-%.o FORCE $(call if_changed,syscall) -AFLAGS_vsyscall-sysenter.o = -m32 -AFLAGS_vsyscall-syscall.o = -m32 +AFLAGS_vsyscall-sysenter.o = -m32 -Wa,-32 +AFLAGS_vsyscall-syscall.o = -m32 -Wa,-32 _ Patches currently in -mm which might be from ak@xxxxxxx are origin.patch git-acpi.patch git-agpgart.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