The patch titled x86_64: fix headers_install has been added to the -mm tree. Its filename is x86_64-fix-headers_install.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_64: fix headers_install From: David Woodhouse <dwmw2@xxxxxxxxxxxxx> A bug in headers_install for ARCH=x86_64 yields an asm/ directory full of files all of which are using the same #ifdef guard, "__ASM_STUB_" with no postfix. So the second and later asm files #included in the same C file (often through standard headers like ioctl.h) yields no symbols. Strangeness with the Ubuntu 'tell me if I support something that's not explcitly mentioned in POSIX, and I'll strip it out' shell, I believe. We don't need the 'export' but we do need a semicolon at the end of the FNAME line: Signed-off-by: David Woodhouse <dwmw2@xxxxxxxxxxxxx> Signed-off-by: Rob Landley <rob@xxxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- scripts/Makefile.headersinst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff -puN scripts/Makefile.headersinst~x86_64-fix-headers_install scripts/Makefile.headersinst --- a/scripts/Makefile.headersinst~x86_64-fix-headers_install +++ a/scripts/Makefile.headersinst @@ -108,7 +108,7 @@ quiet_cmd_mkdir = MKDIR $(patsubst quiet_cmd_gen = GEN $(patsubst $(INSTALL_HDR_PATH)/%,%,$@) cmd_gen = \ -FNAME=$(patsubst $(INSTALL_HDR_PATH)/$(_dst)/%,%,$@) \ +FNAME=$(patsubst $(INSTALL_HDR_PATH)/$(_dst)/%,%,$@); \ STUBDEF=__ASM_STUB_`echo $$FNAME | tr a-z.- A-Z__`; \ (echo "/* File autogenerated by 'make headers_install' */" ; \ echo "\#ifndef $$STUBDEF" ; \ _ Patches currently in -mm which might be from dwmw2@xxxxxxxxxxxxx are x86_64-fix-headers_install.patch git-powerpc.patch powerpc-enable-arbitary-speed-tty-ioctls-and-split.patch git-mtd.patch mtd-add-module-license-to-mtdbdi.patch git-ubi.patch git-battery.patch git-nfs.patch dont-optimise-away-baud-rate-changes-when-bother-is-used.patch dont-optimise-away-baud-rate-changes-when-bother-is-used-fix.patch dont-optimise-away-baud-rate-changes-when-bother-is-used-fix-fix.patch jffs2-convert-to-new-aops.patch char-n_r3964-use-wait_event_interruptible.patch introduce-compat_u64-and-compat_s64-types.patch mismatching-declarations-of-revision-strings-in-hisax.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