The patch titled Subject: mm: fix generated/bounds.h has been added to the -mm tree. Its filename is mm-printk-introduce-new-format-string-for-flags-fix.patch This patch should soon appear at http://ozlabs.org/~akpm/mmots/broken-out/mm-printk-introduce-new-format-string-for-flags-fix.patch and later at http://ozlabs.org/~akpm/mmotm/broken-out/mm-printk-introduce-new-format-string-for-flags-fix.patch Before you just go and hit "reply", please: a) Consider who else should be cc'ed b) Prefer to cc a suitable mailing list as well c) Ideally: find the original patch on the mailing list and do a reply-to-all to that, adding suitable additional cc's *** Remember to use Documentation/SubmitChecklist when testing your code *** The -mm tree is included into linux-next and is updated there every 3-4 working days ------------------------------------------------------ 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 mm-printk-introduce-new-format-string-for-flags-fix.patch memstick-use-sector_div-instead-of-do_div.patch mm-memcontrol-introduce-config_memcg_legacy_kmem-fix.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