The patch titled Subject: printk/sound: Fix a check of the valid message level has been removed from the -mm tree. Its filename was printk-sound-handle-more-message-headers-fix.patch This patch was dropped because it was folded into printk-sound-handle-more-message-headers.patch ------------------------------------------------------ From: Petr Mladek <pmladek@xxxxxxxx> Subject: printk/sound: Fix a check of the valid message level Huh, this was a childish mistake. Link: http://lkml.kernel.org/r/20161111183444.GE2145@xxxxxxxxxxxxxxx Signed-off-by: Petr Mladek <pmladek@xxxxxxxx> Reported-by: Steven Rostedt <rostedt@xxxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- sound/core/misc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff -puN sound/core/misc.c~printk-sound-handle-more-message-headers-fix sound/core/misc.c --- a/sound/core/misc.c~printk-sound-handle-more-message-headers-fix +++ a/sound/core/misc.c @@ -88,7 +88,7 @@ void __snd_printk(unsigned int level, co const char *end_of_header = printk_skip_level(vaf.fmt); /* Ignore KERN_CONT. We print filename:line for each piece. */ - if (kern_level >= '0' || kern_level <= '7') { + if (kern_level >= '0' && kern_level <= '7') { memcpy(verbose_fmt, vaf.fmt, end_of_header - vaf.fmt); level_found = true; } _ Patches currently in -mm which might be from pmladek@xxxxxxxx are printk-nmi-fix-up-handling-of-the-full-nmi-log-buffer.patch printk-nmi-handle-continuous-lines-and-missing-newline.patch printk-kdb-handle-more-message-headers.patch printk-btrfs-handle-more-message-headers.patch printk-sound-handle-more-message-headers.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