The patch titled Subject: mm: fix generated/bounds.h has been removed from the -mm tree. Its filename was mm-printk-introduce-new-format-string-for-flags-fix.patch This patch was dropped because an updated version will be merged ------------------------------------------------------ From: Arnd Bergmann <arnd@xxxxxxxx> Subject: mm: fix generated/bounds.h The inclusion of linux/tracepoint.h is causing build errors for me in ARM randconfig: In file included from /git/arm-soc/include/linux/ktime.h:25:0, from /git/arm-soc/include/linux/rcupdate.h:47, from /git/arm-soc/include/linux/tracepoint.h:19, from /git/arm-soc/include/linux/mmdebug.h:6, from /git/arm-soc/include/linux/page-flags.h:10, from /git/arm-soc/kernel/bounds.c:9: /git/arm-soc/include/linux/jiffies.h:10:33: fatal error: generated/timeconst.h: No such file or directory compilation terminated. To work around this, we can stop including linux/mmdebug.h from linux/page_flags.h while generating bounds.h, as we do for mm_types.h already. Signed-off-by: Arnd Bergmann <arnd@xxxxxxxx> Cc: Vlastimil Babka <vbabka@xxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- include/linux/page-flags.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff -puN include/linux/page-flags.h~mm-printk-introduce-new-format-string-for-flags-fix include/linux/page-flags.h --- a/include/linux/page-flags.h~mm-printk-introduce-new-format-string-for-flags-fix +++ a/include/linux/page-flags.h @@ -7,8 +7,8 @@ #include <linux/types.h> #include <linux/bug.h> -#include <linux/mmdebug.h> #ifndef __GENERATING_BOUNDS_H +#include <linux/mmdebug.h> #include <linux/mm_types.h> #include <generated/bounds.h> #endif /* !__GENERATING_BOUNDS_H */ _ Patches currently in -mm which might be from arnd@xxxxxxxx are include-define-__phys_to_pfn-as-phys_pfn-fix-2.patch arm-thp-remove-infrastructure-for-handling-splitting-pmds-fix.patch printk-nmi-generic-solution-for-safe-printk-in-nmi-v4-fix.patch memstick-use-sector_div-instead-of-do_div.patch mm-memcontrol-introduce-config_memcg_legacy_kmem-fix.patch mm-memcontrol-clean-up-alloc-online-offline-free-functions-fix-2.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