The patch titled Subject: printk-nmi: use %zu format string for size_t has been removed from the -mm tree. Its filename was printk-nmi-generic-solution-for-safe-printk-in-nmi-v4-fix.patch This patch was dropped because it was folded into printk-nmi-generic-solution-for-safe-printk-in-nmi.patch ------------------------------------------------------ From: Arnd Bergmann <arnd@xxxxxxxx> Subject: printk-nmi: use %zu format string for size_t Newly added code in vprintk_nmi prints a size_t using %lu, which causes a warning on architectures like ARM where it is defined as unsigned int: kernel/printk/nmi.c: In function '__printk_nmi_flush': kernel/printk/nmi.c:143:10: warning: format '%lu' expects argument of type 'long unsigned int', but argument 3 has type 'size_t {aka unsigned int}' [-Wformat=] This uses the format string that works on all architectures. Fixes: 0dcfca2060ee ("printk-nmi-generic-solution-for-safe-printk-in-nmi-v4") Signed-off-by: Arnd Bergmann <arnd@xxxxxxxx> Cc: Petr Mladek <pmladek@xxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- kernel/printk/nmi.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff -puN kernel/printk/nmi.c~printk-nmi-generic-solution-for-safe-printk-in-nmi-v4-fix kernel/printk/nmi.c --- a/kernel/printk/nmi.c~printk-nmi-generic-solution-for-safe-printk-in-nmi-v4-fix +++ a/kernel/printk/nmi.c @@ -132,7 +132,7 @@ more: * @len must only increase. */ if (i && i >= len) - pr_err("printk_nmi_flush: internal error: i=%d >= len=%lu\n", + pr_err("printk_nmi_flush: internal error: i=%d >= len=%zu\n", i, len); if (!len) _ Patches currently in -mm which might be from arnd@xxxxxxxx are printk-nmi-generic-solution-for-safe-printk-in-nmi.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