The patch titled kbuild: don't clean bounds.h and asm-offsets.h has been removed from the -mm tree. Its filename was dont-clean-boundsh-and-asm-offsetsh.patch This patch was dropped because it was merged into mainline or a subsystem tree The current -mm tree may be found at http://userweb.kernel.org/~akpm/mmotm/ ------------------------------------------------------ Subject: kbuild: don't clean bounds.h and asm-offsets.h From: Jan Blunck <jblunck@xxxxxxx> Since 97965478a66fbdf0f4ad5e4ecc4828f0cb548a45 mmzone.h includes bounds.h. Calling make clean after make prepare removes bounds.h again so when building external modules this fails. Signed-off-by: Jan Blunck <jblunck@xxxxxxx> Cc: Sam Ravnborg <sam@xxxxxxxxxxxx> Cc: Christoph Lameter <clameter@xxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- Kbuild | 3 +-- Makefile | 1 + 2 files changed, 2 insertions(+), 2 deletions(-) diff -puN Kbuild~dont-clean-boundsh-and-asm-offsetsh Kbuild --- a/Kbuild~dont-clean-boundsh-and-asm-offsetsh +++ a/Kbuild @@ -96,5 +96,4 @@ missing-syscalls: scripts/checksyscalls. $(call cmd,syscalls) # Delete all targets during make clean -clean-files := $(addprefix $(objtree)/,$(targets)) - +clean-files := $(addprefix $(objtree)/,$(filter-out $(bounds-file) $(offsets-file),$(targets))) diff -puN Makefile~dont-clean-boundsh-and-asm-offsetsh Makefile --- a/Makefile~dont-clean-boundsh-and-asm-offsetsh +++ a/Makefile @@ -1121,6 +1121,7 @@ MRPROPER_DIRS += include/config include MRPROPER_FILES += .config .config.old include/asm .version .old_version \ include/linux/autoconf.h include/linux/version.h \ include/linux/utsrelease.h \ + include/linux/bounds.h include/asm*/asm-offsets.h \ Module.symvers tags TAGS cscope* # clean - Delete most, but leave enough to build external modules _ Patches currently in -mm which might be from jblunck@xxxxxxx are origin.patch git-unionfs.patch vfs-path_getput-cleanups.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