The patch titled clean Modules.symvers in external module dirs has been removed from the -mm tree. Its filename was clean-modulessymvers-in-external-module-dirs.patch This patch was dropped because it was merged into mainline or a subsystem tree ------------------------------------------------------ Subject: clean Modules.symvers in external module dirs From: Mike Frysinger <vapier@xxxxxxxxxx> At the moment, running `make clean` in an external module directory does a nice job of cleaning up with one exception: it leaves behind Modules.symvers. Attached patch adds this file to the clean list for external modules. Signed-off-by: Mike Frysinger <vapier@xxxxxxxxxx> Cc: Sam Ravnborg <sam@xxxxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- Makefile | 2 ++ 1 files changed, 2 insertions(+) diff -puN Makefile~clean-modulessymvers-in-external-module-dirs Makefile --- a/Makefile~clean-modulessymvers-in-external-module-dirs +++ a/Makefile @@ -1254,8 +1254,10 @@ $(clean-dirs): $(Q)$(MAKE) $(clean)=$(patsubst _clean_%,%,$@) clean: rm-dirs := $(MODVERDIR) +clean: rm-files := $(KBUILD_EXTMOD)/Module.symvers clean: $(clean-dirs) $(call cmd,rmdirs) + $(call cmd,rmfiles) @find $(KBUILD_EXTMOD) $(RCS_FIND_IGNORE) \ \( -name '*.[oas]' -o -name '*.ko' -o -name '.*.cmd' \ -o -name '.*.d' -o -name '.*.tmp' -o -name '*.mod.c' \) \ _ Patches currently in -mm which might be from vapier@xxxxxxxxxx are git-kbuild.patch printk-add-interfaces-for-external-access-to-the-log-buffer.patch printk-add-interfaces-for-external-access-to-the-log-buffer-fix.patch printk-add-interfaces-for-external-access-to-the-log-buffer-fix-2.patch add-stack-checking-for-blackfin.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