From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1751349AbdH1K2P (ORCPT ); Mon, 28 Aug 2017 06:28:15 -0400 Received: from mail-pg0-f68.google.com ([74.125.83.68]:35741 "EHLO mail-pg0-f68.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751225AbdH1K2N (ORCPT ); Mon, 28 Aug 2017 06:28:13 -0400 Date: Mon, 28 Aug 2017 19:28:30 +0900 From: Sergey Senozhatsky To: Pavel Machek Cc: Sergey Senozhatsky , Petr Mladek , Steven Rostedt , Jan Kara , Andrew Morton , Jiri Slaby , Andreas Mohr , Tetsuo Handa , linux-kernel@vger.kernel.org, Sergey Senozhatsky Subject: Re: printk: what is going on with additional newlines? Message-ID: <20170828102830.GA403@jagdpanzerIV.localdomain> References: <20170815025625.1977-1-sergey.senozhatsky@gmail.com> <20170828090521.GA25025@amd> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20170828090521.GA25025@amd> User-Agent: Mutt/1.8.3 (2017-05-23) Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On (08/28/17 11:05), Pavel Machek wrote: > Hi! > > In 4.13-rc, printk("foo"); printk("bar"); seems to produce > foo\nbar. That's... quite surprising/unwelcome. What is going on > there? Are timestamps responsible? well, one thing we know for sure it is not related to this patch set ;) does any of the below patches fix the problem for you? basically it sets up the rule -- if we don't have LOG_NEWLINE lflags then we enforce LOG_CONT. --- @@ -1721,9 +1723,13 @@ asmlinkage int vprintk_emit(int facility, int level, text_len = vscnprintf(text, sizeof(textbuf), fmt, args); /* mark and strip a trailing newline */ - if (text_len && text[text_len-1] == '\n') { - text_len--; - lflags |= LOG_NEWLINE; + if (text_len) { + if (text[text_len-1] == '\n') { + text_len--; + lflags |= LOG_NEWLINE; + } else { + lflags |= LOG_CONT; + } } /* strip kernel syslog prefix and extract log level or control flags */ --- === 8< === 8< === or... an alternative "solution" --- diff --git a/kernel/printk/printk.c b/kernel/printk/printk.c index fc47863f629c..5fd567abc5e6 100644 --- a/kernel/printk/printk.c +++ b/kernel/printk/printk.c @@ -1670,7 +1670,9 @@ static size_t log_output(int facility, int level, enum log_flags lflags, const c * write from the same process, try to add it to the buffer. */ if (cont.len) { - if (cont.owner == current && (lflags & LOG_CONT)) { + if (cont.owner == current && + ((lflags & LOG_CONT) || + !(lflags & LOG_NEWLINE))) { if (cont_add(facility, level, lflags, text, text_len)) return text_len; } --- -ss