The patch titled restore correct print_len calculation in printk has been removed from the -mm tree. Its filename is statistics-infrastructure-prerequisite-timestamp-fix.patch This patch was dropped because it was folded into statistics-infrastructure-prerequisite-timestamp.patch ------------------------------------------------------ Subject: restore correct print_len calculation in printk From: Martin Peschke <mp3@xxxxxxxxxx> This fixes the following miscalculation that has been introduced by my statistics-infrastructure-prerequisite-timestamp.patch: print_len loses 3 in the 'got log level'-case due to a surplus substraction. It also loses 3 in the other case due to adding a log level substring that is not entered in the books. Signed-off-by: Martin Peschke <mp3@xxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxx> --- kernel/printk.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff -puN kernel/printk.c~statistics-infrastructure-prerequisite-timestamp-fix kernel/printk.c --- a/kernel/printk.c~statistics-infrastructure-prerequisite-timestamp-fix +++ a/kernel/printk.c @@ -538,9 +538,9 @@ asmlinkage int vprintk(const char *fmt, p[1] <= '7' && p[2] == '>') { loglev_char = p[1]; p += 3; - printed_len -= 3; } else { loglev_char = default_message_loglevel + '0'; + printed_len += 3; } emit_log_char('<'); emit_log_char(loglev_char); _ Patches currently in -mm which might be from mp3@xxxxxxxxxx are statistics-infrastructure-prerequisite-list.patch statistics-infrastructure-prerequisite-parser.patch statistics-infrastructure-prerequisite-timestamp.patch statistics-infrastructure-prerequisite-timestamp-fix.patch statistics-infrastructure-make-printk_clock-a-generic-kernel-wide-nsec-resolution.patch statistics-infrastructure-documentation.patch statistics-infrastructure.patch statistics-infrastructure-update-9.patch statistics-use-the-enhanced-percpu-interface.patch statistics-replace-inode-ugeneric_ip-with-i_private.patch statistics-infrastructure-exploitation-zfcp.patch statistics-infrastructure-exploitation-zfcp-sched_clock-fix.patch zfcp-gather-hba-specific-latencies-in-statistics.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