The patch titled UML: build fix has been added to the -mm tree. Its filename is uml-build-fix.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: UML: build fix From: WANG Cong <xiyou.wangcong@xxxxxxxxx> include/asm-um/arch points to the non-existed include/asm-i386 directory. Signed-off-by: WANG Cong <xiyou.wangcong@xxxxxxxxx> Cc: Jeff Dike <jdike@xxxxxxxxxx> Cc: Sam Ravnborg <sam@xxxxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- arch/um/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff -puN arch/um/Makefile~uml-build-fix arch/um/Makefile --- a/arch/um/Makefile~uml-build-fix +++ a/arch/um/Makefile @@ -168,7 +168,7 @@ ifneq ($(KBUILD_SRC),) $(Q)mkdir -p $(objtree)/include/asm-um $(Q)ln -fsn $(srctree)/include/asm-$(HEADER_ARCH) include/asm-um/arch else - $(Q)cd $(TOPDIR)/include/asm-um && ln -fsn ../asm-$(SUBARCH) arch + $(Q)cd $(TOPDIR)/include/asm-um && ln -fsn ../asm-$(HEADER_ARCH) arch endif $(objtree)/$(ARCH_DIR)/include: _ Patches currently in -mm which might be from xiyou.wangcong@xxxxxxxxx are uml-build-fix.patch cscope-build-warning.patch uml-code-tidying-under-arch-um-os-linux.patch uml-const-and-other-tidying.patch time-fix-sysfs_show_availablecurrent_clocksources-buffer-overflow-problem.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