The patch titled kmemcheck: include module.h to prevent warnings has been removed from the -mm tree. Its filename was kmemcheck-include-moduleh-to-prevent-warnings.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: kmemcheck: include module.h to prevent warnings From: Randy Dunlap <randy.dunlap@xxxxxxxxxx> kmemcheck/shadow.c needs to include <linux/module.h> to prevent the following warnings: linux-next-20080724/arch/x86/mm/kmemcheck/shadow.c:64: warning : data definition has no type or storage class linux-next-20080724/arch/x86/mm/kmemcheck/shadow.c:64: warning : type defaults to 'int' in declaration of 'EXPORT_SYMBOL_GPL' linux-next-20080724/arch/x86/mm/kmemcheck/shadow.c:64: warning : parameter names (without types) in function declaration Signed-off-by: Randy Dunlap <randy.dunlap@xxxxxxxxxx> Cc: Vegard Nossum <vegard.nossum@xxxxxxxxx> Acked-by: Pekka Enberg <penberg@xxxxxxxxxxxxxx> Cc: Ingo Molnar <mingo@xxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- arch/x86/mm/kmemcheck/shadow.c | 1 + 1 file changed, 1 insertion(+) diff -puN arch/x86/mm/kmemcheck/shadow.c~kmemcheck-include-moduleh-to-prevent-warnings arch/x86/mm/kmemcheck/shadow.c --- a/arch/x86/mm/kmemcheck/shadow.c~kmemcheck-include-moduleh-to-prevent-warnings +++ a/arch/x86/mm/kmemcheck/shadow.c @@ -1,5 +1,6 @@ #include <linux/kmemcheck.h> #include <linux/mm.h> +#include <linux/module.h> #include <asm/page.h> #include <asm/pgtable.h> _ Patches currently in -mm which might be from randy.dunlap@xxxxxxxxxx are linux-next.patch documentation-build-source-files-in-documentation-sub-dir.patch genksyms-parser-fix-the-__attribute__-rule.patch genksyms-include-extern-information-in-dumps.patch genksyms-track-symbol-checksum-changes.patch genksyms-allow-to-ignore-symbol-checksum-changes.patch e1000e-make-e1000e-default-to-the-same-kconfig-setting-as-e1000.patch netfilter-conntrack_helper-needs-to-include-rculisth.patch lkdtm-fix-for-config_scsi=n.patch git-unionfs.patch rcu-fix-synchronize_rcu-so-that-kernel-doc-works.patch rcu-fix-synchronize_rcu-so-that-kernel-doc-works-comment.patch profile-likely-unlikely-macros.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